There was an error while loading. Please reload this page.
1 parent 3c23a94 commit 3fd5470Copy full SHA for 3fd5470
components/meta/seo.tsx
@@ -72,7 +72,7 @@ export const SEO = (props: SEOProps) => {
72
{seoImage && <meta property="og:image" content={seoImage.url} />}
73
{seoImage && <meta property="og:image:width" content={`${seoImage.dimensions.width}`} />}
74
{seoImage && <meta property="og:image:height" content={`${seoImage.dimensions.height}`} />}
75
- <script type="application/ld+json">{JSON.stringify(jsonLd, undefined, 4)}</script>
+ <script type="application/ld+json" dangerouslySetInnerHTML={{__html: JSON.stringify(jsonLd)}}></script>
76
</Head>
77
)
78
}
0 commit comments