From a596c84a7eee9c3a7cc3397d383598b28b957c41 Mon Sep 17 00:00:00 2001 From: Chris Hunt Date: Fri, 16 Dec 2022 12:05:14 +0000 Subject: [PATCH] Fix no category breaking display --- site/components/App.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/components/App.js b/site/components/App.js index e5bee74..9faef37 100644 --- a/site/components/App.js +++ b/site/components/App.js @@ -8,7 +8,7 @@ function App({ Component, pageProps, app }) {
{ app.friendly_name }
-

{ app.categories[0] }

+

{ app.categories && app.categories[0] || 'Unknown' }