diff --git a/src/App.tsx b/src/App.tsx index 8548252..e3f86bf 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -5,6 +5,9 @@ import { healthchecksioFetcher, sentryFetcher } from './utils' import WATcloudLogo from './assets/watcloud-logo' function processHCData(data: any) { + if (!data) { + return null; + } return data.checks?.map((check: any) => { const tags = check.tags.split(' ');