diff --git a/features/entryscape/organisation-page/index.tsx b/features/entryscape/organisation-page/index.tsx
index 8dc105a6..27f97838 100644
--- a/features/entryscape/organisation-page/index.tsx
+++ b/features/entryscape/organisation-page/index.tsx
@@ -309,29 +309,34 @@ export const OrganisationPage: FC = () => {
{/* End right column */}
-
- {entry.organisationData?.showcases.map((showcase) => (
-
- {showcase.date && (
-
- {showcase.date} |
+ {entry.organisationData?.showcases &&
+ entry.organisationData?.showcases.length > 0 && (
+
+ {entry.organisationData?.showcases.map((showcase) => (
+
+ {showcase.date && (
+
+ {showcase.date} |
+
+ )}
+
+ {showcase.title}
+
+
- )}
-
{showcase.title}
-
+ ))}
- ))}
-
+ )}
);