Openstatus www.openstatus.dev
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(opengraph): remove unnecessary bracket in metadata (#344)

authored by

Arthur EICHELBERGER and committed by
GitHub
c7288632 08f66786

+2 -4
+2 -4
apps/web/src/app/status-page/[domain]/page.tsx
··· 55 55 twitter: { 56 56 ...twitterMetadata, 57 57 images: [ 58 - `/api/og?monitorId=${firstMonitor?.id}&title=${page?.title}&description=${ 59 - page?.description || `The ${page?.title} status page}` 58 + `/api/og?monitorId=${firstMonitor?.id}&title=${page?.title}&description=${page?.description || `The ${page?.title} status page` 60 59 }`, 61 60 ], 62 61 title: page?.title, ··· 65 64 openGraph: { 66 65 ...ogMetadata, 67 66 images: [ 68 - `/api/og?monitorId=${firstMonitor?.id}&title=${page?.title}&description=${ 69 - page?.description || `The ${page?.title} status page}` 67 + `/api/og?monitorId=${firstMonitor?.id}&title=${page?.title}&description=${page?.description || `The ${page?.title} status page` 70 68 }`, 71 69 ], 72 70 title: page?.title,