Skip to content

Commit

Permalink
fix: 🐛 twitter card name
Browse files Browse the repository at this point in the history
  • Loading branch information
heldrida committed Jun 6, 2024
1 parent 1b2d08d commit 06ff51b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/layouts/BaseHtml.astro
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const baseUrl = getSiteUrl();
<!-- Twitter Meta Tags -->
<meta
name="twitter:card"
content={`${baseUrl}${ogMeta?.image}` || settings.site.metadata.image}
content={`${baseUrl}${ogMeta?.title}` || settings.site.metadata.title}
/>
<meta property="twitter:domain" content={baseUrl} />
<meta property="twitter:url" content={`${baseUrl}/${ogMeta?.slug}`} />
Expand Down

0 comments on commit 06ff51b

Please sign in to comment.