diff --git a/app/(dashboard)/bookings/sga-spaces-tab.tsx b/app/(dashboard)/bookings/sga-spaces-tab.tsx
index bf85b66..168bf28 100644
--- a/app/(dashboard)/bookings/sga-spaces-tab.tsx
+++ b/app/(dashboard)/bookings/sga-spaces-tab.tsx
@@ -41,6 +41,7 @@ interface SpaceBooking {
start_time: string
end_time: string
attendee_ids: string[]
+ external_attendees?: string[] | null
creator_name: string | null
/** The weekly series this booking is one week of (issue #112). */
series_id: string | null
@@ -308,7 +309,7 @@ function AdminBookingsPanel({ spaces }: { spaces: Space[] }) {
{b.creator_name ?? '—'} |
{formatDateTime(b.start_time)} |
{formatDateTime(b.end_time)} |
- {(b.attendee_ids ?? []).length + 1} |
+ {(b.attendee_ids ?? []).length + (b.external_attendees ?? []).length + 1} |
|