diff --git a/components/calendar/calendar-widget.tsx b/components/calendar/calendar-widget.tsx index 5521d2e..76f1295 100644 --- a/components/calendar/calendar-widget.tsx +++ b/components/calendar/calendar-widget.tsx @@ -113,11 +113,7 @@ export function CalendarWidget() { // Calculate current event count const currentEventCount = upcomingEvents.length; - // Trigger notification if count changed - if (currentEventCount !== lastEventCountRef.current) { - lastEventCountRef.current = currentEventCount; - - // Always prepare notification items (even if count hasn't changed) + // Always prepare notification items const notificationItems = upcomingEvents.map(event => ({ id: event.id, title: event.title,