From 3ab0b04cf065bead13bd0445ff37598a958e7851 Mon Sep 17 00:00:00 2001 From: Emile Bangma Date: Sun, 8 Dec 2024 22:35:49 +0000 Subject: [PATCH] fix(Date): Account for local timezone offset --- quartz/components/Date.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quartz/components/Date.tsx b/quartz/components/Date.tsx index 0a92cc4c3..e21c9477d 100644 --- a/quartz/components/Date.tsx +++ b/quartz/components/Date.tsx @@ -27,5 +27,5 @@ export function formatDate(d: Date, locale: ValidLocale = "en-US"): string { } export function Date({ date, locale }: Props) { - return + return }