From cf5d395de0c47a7ccb8a95fbbb942c780a1cd6f2 Mon Sep 17 00:00:00 2001 From: Arthur Belleville Date: Tue, 7 Oct 2025 21:57:47 +0200 Subject: [PATCH] Get slots for two months --- api/src/public.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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")