From d272fc4f3fab3f64256a0c89f48c156f6eb861d1 Mon Sep 17 00:00:00 2001 From: alma Date: Sat, 17 Jan 2026 00:27:36 +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 2c19150..cd907b0 100644 --- a/components/calendar.tsx +++ b/components/calendar.tsx @@ -131,7 +131,7 @@ export function Calendar() { console.log('[Calendar Widget] 📅 Dispatching calendar events update', { eventsCount: eventsForNotification.length, - events: eventsForNotification.map(e => ({ + events: eventsForNotification.map((e: { id: string; title: string; start: Date; end: Date; isAllDay: boolean; calendarName: string; calendarColor: string }) => ({ id: e.id, title: e.title, start: e.start instanceof Date ? e.start.toISOString() : e.start,