Get slots for two months

This commit is contained in:
Arthur Belleville 2025-10-07 21:57:47 +02:00
parent 949b28c726
commit cf5d395de0
No known key found for this signature in database

View file

@ -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")