Fondation

This commit is contained in:
alma 2026-01-17 00:20:50 +01:00
parent 11398f75ce
commit 86b40479c7

View File

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