diff --git a/api/src/public.ts b/api/src/public.ts index 7a23677..64c949c 100644 --- a/api/src/public.ts +++ b/api/src/public.ts @@ -104,7 +104,7 @@ publicRouter.get("/slots/:shortUserId/:standardName", async (c) => { // Use CET time for availability calculations const now = getCETTime(); const nextMonth = new Date(now); - nextMonth.setMonth(now.getMonth() + 1); + nextMonth.setMonth(now.getMonth() + 2); const { data: eventsData, error: eventsError } = await supabase .from("events")