From 338c2f307155d6aa0bd2bce564d993a37969f07b Mon Sep 17 00:00:00 2001 From: Minseo Lee Date: Wed, 28 Aug 2024 11:57:09 +0900 Subject: [PATCH] Update useTimezone.ts --- src/components/hooks/useTimezone.ts | 1 + 1 file changed, 1 insertion(+) 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); };