Fondation

This commit is contained in:
alma 2026-01-17 00:27:36 +01:00
parent c0af54eff5
commit d272fc4f3f

View File

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