diff --git a/quartz/components/Date.tsx b/quartz/components/Date.tsx index e21c9477d..0f73ac7b4 100644 --- a/quartz/components/Date.tsx +++ b/quartz/components/Date.tsx @@ -23,9 +23,10 @@ export function formatDate(d: Date, locale: ValidLocale = "en-US"): string { year: "numeric", month: "short", day: "2-digit", + timeZone: Intl.DateTimeFormat().resolvedOptions().timeZone, }) } export function Date({ date, locale }: Props) { - return + return }