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",