Skip to content

Commit

Permalink
Allow checks to be undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-z committed Jul 15, 2024
1 parent a391fc0 commit ca5f6a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { healthchecksioFetcher, sentryFetcher } from './utils'
import WATcloudLogo from './assets/watcloud-logo'

function processHCData(data: any) {
return data.checks.map((check: any) => {
return data.checks?.map((check: any) => {
const tags = check.tags.split(' ');

const additionalAttributes: Record<string, string> = {};
Expand Down

0 comments on commit ca5f6a0

Please sign in to comment.