From 86b40479c7f208e54becca341c8716b3e592df51 Mon Sep 17 00:00:00 2001 From: alma Date: Sat, 17 Jan 2026 00:20:50 +0100 Subject: [PATCH] Fondation --- components/calendar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/calendar.tsx b/components/calendar.tsx index 97ba772..42614c3 100644 --- a/components/calendar.tsx +++ b/components/calendar.tsx @@ -119,7 +119,7 @@ export function Calendar() { setEvents(upcomingEvents); // Dispatch event for Outlook-style notifications (when events start) - const eventsForNotification = upcomingEvents.map(evt => ({ + const eventsForNotification = upcomingEvents.map((evt: Event) => ({ id: evt.id, title: evt.title, start: evt.start instanceof Date ? evt.start : new Date(evt.start),