Skip to content

Commit

Permalink
Update index.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
lyc8503 authored Jun 30, 2024
1 parent b232414 commit c4da5f6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,10 @@ export async function getServerSideProps() {
return {
id: monitor.id,
name: monitor.name,
tooltip: 'Default Tooltip Value', //monitor?.tooltip,
statusPageLink: 'statusPageLink', //monitor?.statusPageLink
// @ts-ignore
tooltip: monitor?.tooltip,
// @ts-ignore
statusPageLink: monitor?.statusPageLink
}
})

Expand Down

0 comments on commit c4da5f6

Please sign in to comment.