fix: Update upcoming projects calculation to include the next 5 weeks

This commit is contained in:
2025-09-18 12:01:52 +02:00
parent 8964a9b29b
commit abfd174f85

View File

@@ -92,7 +92,7 @@ export default function ProjectCalendarPage() {
const getUpcomingProjects = () => { const getUpcomingProjects = () => {
const today = startOfDay(new Date()); const today = startOfDay(new Date());
const nextMonth = addWeeks(today, 4); const nextMonth = addWeeks(today, 5); // Next 5 weeks
return projects return projects
.filter(project => { .filter(project => {