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,