From d888008096ac3a72104db511b6c55e50642d3f15 Mon Sep 17 00:00:00 2001 From: xrendan Date: Mon, 10 Aug 2026 16:08:01 -0600 Subject: [PATCH] Fix memo date hydration mismatch --- src/components/ui/memo-card.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/ui/memo-card.tsx b/src/components/ui/memo-card.tsx index 7e4964e..f76bca8 100644 --- a/src/components/ui/memo-card.tsx +++ b/src/components/ui/memo-card.tsx @@ -31,6 +31,7 @@ function formatDate(dateStr: string | null | undefined, fallback?: string): stri const d = new Date(dateStr || fallback || ''); if (isNaN(d.getTime())) return ''; return d.toLocaleDateString("en-CA", { + timeZone: "America/Toronto", year: "numeric", month: "short", day: "numeric",