Skip to content

Commit

Permalink
fix double title
Browse files Browse the repository at this point in the history
  • Loading branch information
alec-chernicki committed Jan 2, 2024
1 parent c519e74 commit 60d3cec
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion apps/documentation/theme.config.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,11 @@ const config: DocsThemeConfig = {
<meta name="twitter:url" content="https://commonality.co" />
<meta
name="og:title"
content={title ? title + ' – Commonality' : 'Commonality'}
content={
title && title !== 'Commonality'
? title + ' – Commonality'
: 'Commonality'
}
/>
<meta name="og:image" content={socialCard} />
<meta name="apple-mobile-web-app-title" content="Commonality" />
Expand Down

0 comments on commit 60d3cec

Please sign in to comment.