Skip to content

Commit

Permalink
Fix attribute of Open Graph meta tags on website
Browse files Browse the repository at this point in the history
  • Loading branch information
fabian-hiller committed Jan 11, 2024
1 parent 141d0be commit 5812544
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions website/src/utils/addArticleMetadata.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,23 +30,23 @@ export function addArticleMetadata({
meta: [
// Open Graph
{
name: 'og:type',
property: 'og:type',
content: 'article',
},
{
name: 'og:url',
property: 'og:url',
content: url.href,
},
{
name: 'og:title',
property: 'og:title',
content: head.title,
},
{
name: 'og:description',
property: 'og:description',
content: description,
},
{
name: 'og:image',
property: 'og:image',
content: imageUrl,
},

Expand Down

0 comments on commit 5812544

Please sign in to comment.