From abfd174f85be5e28d110a7a5e3a695edd7f71ff1 Mon Sep 17 00:00:00 2001 From: RKWojs Date: Thu, 18 Sep 2025 12:01:52 +0200 Subject: [PATCH] fix: Update upcoming projects calculation to include the next 5 weeks --- src/app/calendar/page.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/calendar/page.js b/src/app/calendar/page.js index 1770bc3..c6c84de 100644 --- a/src/app/calendar/page.js +++ b/src/app/calendar/page.js @@ -92,7 +92,7 @@ export default function ProjectCalendarPage() { const getUpcomingProjects = () => { const today = startOfDay(new Date()); - const nextMonth = addWeeks(today, 4); + const nextMonth = addWeeks(today, 5); // Next 5 weeks return projects .filter(project => {