diff --git a/apps/events-helsinki/src/pages/articles/[...slug].tsx b/apps/events-helsinki/src/pages/articles/[...slug].tsx index 742ec549e..dd536b019 100644 --- a/apps/events-helsinki/src/pages/articles/[...slug].tsx +++ b/apps/events-helsinki/src/pages/articles/[...slug].tsx @@ -56,6 +56,10 @@ const NextCmsArticle: NextPage<{ const { footerMenu } = useContext(NavigationContext); + // FIXME: Return null to fix SSR rendering for notFound-page. + // This is needed only with fallback: true, but should not be needed at all. + if (!article) return null; + return (