diff --git a/app/components/EventDetails.tsx b/app/components/EventDetails.tsx index 30907fb..d558bda 100644 --- a/app/components/EventDetails.tsx +++ b/app/components/EventDetails.tsx @@ -23,26 +23,49 @@ export function EventDetails({ day: "numeric", month: "long", }); - - return ( -
-

{formatter.format(date)}

-

{location}

- - - {linkText} - - -
- ); + try { + return ( +
+

{formatter.format(date)}

+

{location}

+ + + {linkText} + + +
+ ); + } catch (ex) { + return ( +
+

UNKNOWN

+

{location}

+ + + {linkText} + + +
+ ); + } }