diff --git a/src/Events.js b/src/Events.js index 3d80136..c76d27b 100644 --- a/src/Events.js +++ b/src/Events.js @@ -35,7 +35,12 @@ function Time({ date }) { hour: time_option, minute: time_option, } - return

{new Intl.DateTimeFormat('no', options).format(date)}

+ let res = null + try { + res = new Intl.DateTimeFormat('no', options).format(date) + } catch (error) {} + + return

{res}

} function Location({ location }) {