diff --git a/src/utils/hooks.ts b/src/utils/hooks.ts index 2f9e17d..fc4eb81 100644 --- a/src/utils/hooks.ts +++ b/src/utils/hooks.ts @@ -57,7 +57,7 @@ type DateFormatOptions = Pick< export function useDateFormatter(options: DateFormatOptions, locale?: string) { return useMemo( - () => new Intl.DateTimeFormat(locale, options), + () => new Intl.DateTimeFormat(locale, { timeZone: "UTC", ...options }), [locale, options] ); }