Skip to content

Commit

Permalink
fix: use of wrong object for localAlternate
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasmerlin committed Aug 29, 2021
1 parent 0f0355f commit a588be4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SEO.astro
Expand Up @@ -90,7 +90,7 @@ if (openGraph) {
{ openGraph.optional.locale ? (
<meta property="og:locale" content={openGraph.optional.locale} />
) : null }
{ openGraph.openGraph.localeAlternate?.map((locale) => (
{ openGraph.optional.localeAlternate?.map((locale) => (
<meta property="og:locale:alternate" content={locale} />
))}
{ openGraph.optional.siteName ? (
Expand Down

0 comments on commit a588be4

Please sign in to comment.