Skip to content

Commit

Permalink
Bump "next-intl" to "3.1.4"
Browse files Browse the repository at this point in the history
  • Loading branch information
barbarah committed Nov 28, 2023
1 parent 0ec2284 commit a12f07e
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 13 deletions.
2 changes: 1 addition & 1 deletion apps/dataset-browser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"classnames": "2.3.2",
"fetch-sparql-endpoint": "4.1.0",
"next": "14.0.3",
"next-intl": "3.1.2",
"next-intl": "3.1.4",
"rdf-object": "1.14.0",
"react": "18.2.0",
"react-dom": "18.2.0",
Expand Down
2 changes: 1 addition & 1 deletion apps/researcher/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"classnames": "2.3.2",
"fetch-sparql-endpoint": "4.1.0",
"next": "14.0.3",
"next-intl": "3.1.2",
"next-intl": "3.1.4",
"openseadragon": "4.1.0",
"rdf-object": "1.14.0",
"react": "18.2.0",
Expand Down
4 changes: 3 additions & 1 deletion apps/researcher/src/components/list-store-updater.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ interface Props {
limit: number;
query: string;
sortBy?: string;
selectedFilters?: {[filterKey: string]: string[] | undefined};
selectedFilters?: {
[filterKey: string]: (string | number)[] | number | string | undefined;
};
}

export function ListStoreUpdater(updateProps: Props) {
Expand Down
2 changes: 1 addition & 1 deletion apps/researcher/src/middleware.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default authMiddleware({
// See issue: https://github.com/vercel/next.js/issues/43704
request.headers.set('x-pathname', request.nextUrl.pathname);

const response = handleI18nRouting(request as unknown as NextRequest);
const response = handleI18nRouting(request);

return response;
},
Expand Down
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/list-store/src/use-list-helpers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ interface Props {
query: string;
sortBy?: string;
selectedFilters?: {
[filterKey: string]: string[] | string | number | undefined;
[filterKey: string]: (string | number)[] | number | string | undefined;
};
routerReplace: (url: string, options?: {scroll?: boolean}) => void;
}
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"@heroicons/react": "2.0.18",
"classnames": "2.3.2",
"next": "14.0.3",
"next-intl": "3.1.2",
"next-intl": "3.1.4",
"react": "18.2.0",
"zustand": "4.4.1"
}
Expand Down

0 comments on commit a12f07e

Please sign in to comment.