From eff0698acb3f120e6335e8214cebe2452d4b0a28 Mon Sep 17 00:00:00 2001 From: counterweight Date: Fri, 26 Dec 2025 11:38:48 +0100 Subject: [PATCH] Add timeZone configuration to next-intl - Add timeZone='Europe/Madrid' to NextIntlClientProvider - Fixes ENVIRONMENT_FALLBACK warning about missing timeZone configuration - Ensures consistent timezone handling across SSR and client rendering --- frontend/app/components/IntlProvider.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/app/components/IntlProvider.tsx b/frontend/app/components/IntlProvider.tsx index 1306622..72273f6 100644 --- a/frontend/app/components/IntlProvider.tsx +++ b/frontend/app/components/IntlProvider.tsx @@ -69,7 +69,7 @@ export function IntlProvider({ children }: IntlProviderProps) { }, [locale]); return ( - + {children} );