Update index.tsx

pull/43/head
lyc8503 2024-06-30 16:08:23 +08:00 committed by GitHub
parent b232414d22
commit c4da5f6c15
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 2 deletions

View File

@ -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
}
})