diff --git a/components/dataset/Org.tsx b/components/dataset/Org.tsx
index 8187e8d8..af495681 100644
--- a/components/dataset/Org.tsx
+++ b/components/dataset/Org.tsx
@@ -3,10 +3,15 @@ import Link from 'next/link'
export default function Org({ org }) {
return (
<>
-
-
- { org.title || org.name }
-
+ {org
+ ? <>
+
+
+ { org.title || org.name }
+
+ >
+ : ''
+ }
>
)
}