You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'Deprecation warning: `useLocale` has returned a default from `useParams().locale` since no `NextIntlClientProvider` ancestor was found for the calling component. This behavior will be removed in the next major version. Please ensure all Client Components that use `next-intl` are wrapped in a `NextIntlClientProvider`.'
// Make sure `now` is consistent across the request in case none was configured
15
18
functiongetDefaultNowImpl(){
16
19
returnnewDate();
@@ -49,6 +52,15 @@ See also: https://next-intl.dev/docs/usage/configuration#i18n-request
49
52
// `locale` (either in a single-language workflow or because the locale is
50
53
// read from the user settings), don't attempt to read the request locale.
51
54
getlocale(){
55
+
if(
56
+
process.env.NODE_ENV!=='production'&&
57
+
!hasWarnedForAccessedLocaleParam
58
+
){
59
+
console.warn(
60
+
`\nThe \`locale\` parameter in \`getRequestConfig\` is deprecated, please switch to \`await requestLocale\`. See https://next-intl.dev/blog/next-intl-3-22#await-request-locale\n`
61
+
);
62
+
hasWarnedForAccessedLocaleParam=true;
63
+
}
52
64
returnlocaleOverride||getRequestLocaleLegacy();
53
65
},
54
66
@@ -64,15 +76,28 @@ See also: https://next-intl.dev/docs/usage/configuration#i18n-request
`\nUnable to find \`next-intl\` locale because the middleware didn't run on this request and no \`locale\` was returned in \`getRequestConfig\`. See https://next-intl.dev/docs/routing/middleware#unable-to-find-locale. The \`notFound()\` function will be called as a result.\n`
87
+
`\nA \`locale\` is expected to be returned from \`getRequestConfig\`, but none was returned. This will be an error in the next major version of next-intl.\n\nSee: https://next-intl.dev/blog/next-intl-3-22#await-request-locale\n`
73
88
);
89
+
hasWarnedForMissingReturnedLocale=true;
90
+
}
91
+
92
+
locale=awaitparams.requestLocale;
93
+
if(!locale){
94
+
if(process.env.NODE_ENV!=='production'){
95
+
console.error(
96
+
`\nUnable to find \`next-intl\` locale because the middleware didn't run on this request and no \`locale\` was returned in \`getRequestConfig\`. See https://next-intl.dev/docs/routing/middleware#unable-to-find-locale. The \`notFound()\` function will be called as a result.\n`
0 commit comments