Skip to content

Commit

Permalink
Use the same title in all tags
Browse files Browse the repository at this point in the history
Signed-off-by: Damian Stasik <[email protected]>
  • Loading branch information
damianstasik committed Sep 4, 2024
1 parent af103b3 commit 595c647
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/MetaTags/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ export function MetaTags({ title, description }: MetaTagsProps) {
return (
<Helmet>
<title>{siteTitle}</title>
<meta property="og:title" content={title} />
<meta name="twitter:title" content={title} />
<meta property="og:title" content={siteTitle} />
<meta name="twitter:title" content={siteTitle} />
{description && <meta name="description" content={description} />}
{description && <meta property="og:description" content={description} />}
{description && <meta name="twitter:description" content={description} />}
Expand Down

0 comments on commit 595c647

Please sign in to comment.