diff --git a/frontend/src/pages/ClubDash/EventsManagement/components/EventDashboard/EventDashboardHeader.jsx b/frontend/src/pages/ClubDash/EventsManagement/components/EventDashboard/EventDashboardHeader.jsx
index b568d193..bb6846cd 100644
--- a/frontend/src/pages/ClubDash/EventsManagement/components/EventDashboard/EventDashboardHeader.jsx
+++ b/frontend/src/pages/ClubDash/EventsManagement/components/EventDashboard/EventDashboardHeader.jsx
@@ -250,39 +250,33 @@ function EventDashboardHeader({ event, stats, onClose, onRefresh, orgId, onSendA
)}
- {event?.hostingType === 'Org' && (
+ {event?.hostingType === 'Org' && collaborationOrgs.length > 0 && (
- {collaborationOrgs.length === 0 ? (
-
with no other organizations yet
- ) : (
- <>
-
with
-
- {collaborationOrgs.map((org, index) => {
- const lastIndex = collaborationOrgs.length - 1;
- const isLast = index === lastIndex;
- const needsAnd = collaborationOrgs.length > 1 && isLast;
- const needsComma = index > 0 && !isLast;
- return (
- -
- {needsComma && (
- ,
- )}
- {needsAnd && (
- and
- )}
-
- {org.name}
-
- );
- })}
-
- >
- )}
+
with
+
+ {collaborationOrgs.map((org, index) => {
+ const lastIndex = collaborationOrgs.length - 1;
+ const isLast = index === lastIndex;
+ const needsAnd = collaborationOrgs.length > 1 && isLast;
+ const needsComma = index > 0 && !isLast;
+ return (
+ -
+ {needsComma && (
+ ,
+ )}
+ {needsAnd && (
+ and
+ )}
+
+ {org.name}
+
+ );
+ })}
+
)}