diff --git a/src/components/hooks/useTimezone.ts b/src/components/hooks/useTimezone.ts index f7976aabb..b98c79711 100644 --- a/src/components/hooks/useTimezone.ts +++ b/src/components/hooks/useTimezone.ts @@ -15,6 +15,7 @@ export function useTimezone() { }; const formatTimezoneDate = (intl: IntlShape, date: string, options?: FormatDateOptions) => { + options.timeZone = timezone; return intl.formatDate(date, options); };