From f609b82b25b4b761defd883267f8a5b739769160 Mon Sep 17 00:00:00 2001 From: eugbyte Date: Wed, 8 Oct 2025 21:45:59 +0800 Subject: [PATCH] chore: update --- src/evently.client/src/routes/gatherings/$gatheringId/index.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/evently.client/src/routes/gatherings/$gatheringId/index.tsx b/src/evently.client/src/routes/gatherings/$gatheringId/index.tsx index 0fa79c1..3ba6d64 100644 --- a/src/evently.client/src/routes/gatherings/$gatheringId/index.tsx +++ b/src/evently.client/src/routes/gatherings/$gatheringId/index.tsx @@ -21,6 +21,7 @@ export const Route = createFileRoute("/gatherings/$gatheringId/")({ const gatheringId: number = parseInt(params.gatheringId); const gathering: Gathering | null = await getGathering(gatheringId); let booking: Booking | null = null; + console.log({ accountId }); if (accountId != null && accountId.trim().length > 0) { const { data: bookings } = await getBookings({ attendeeId: accountId,