clean-up event/event-data endpoints. fix for expanded view for mobile

This commit is contained in:
Francis Cao 2025-10-15 11:32:19 -07:00
parent 9df012084d
commit a2b1089e62
8 changed files with 47 additions and 21 deletions

View file

@ -19,7 +19,7 @@ export async function GET(
return unauthorized();
}
const data = await getEventData(eventId);
const data = await getEventData(websiteId, eventId);
return json(data);
}