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,