Skip to content

Commit 75884df

Browse files
authored
Fix duplicated og:title (#1842)
1 parent b00b699 commit 75884df

File tree

2 files changed

+24
-9
lines changed

2 files changed

+24
-9
lines changed

src/components/tools-and-libraries.tsx

+13-6
Original file line numberDiff line numberDiff line change
@@ -168,16 +168,23 @@ export function CodePage({ allTags, data }: CodePageProps) {
168168

169169
const [sort, setSort] = useState("popularity")
170170

171+
let description = `A collection of tools and libraries for GraphQL`
172+
let title = "Tools and Libraries | GraphQL"
173+
if (selectedTagsAsString) {
174+
description += ` related to ${selectedTagsAsString}`
175+
title = `${selectedTagsAsString} | ${title}`
176+
}
177+
171178
return (
172179
<>
173180
<NextHead>
174-
<title>
175-
{selectedTagsAsString ? selectedTagsAsString + " | " : ""}Tools and
176-
Libraries | GraphQL
177-
</title>
181+
<title>{title}</title>
182+
<meta property="og:title" content={title} key="meta-og-title" />
183+
<meta name="description" content={description} key="meta-description" />
178184
<meta
179-
name="description"
180-
content={`A collection of tools and libraries for GraphQL${selectedTagsAsString ? ` related to ${selectedTagsAsString}` : ""}`}
185+
property="og:description"
186+
content={description}
187+
key="meta-og-description"
181188
/>
182189
</NextHead>
183190
<div className="container py-10 md:py-20">

theme.config.tsx

+11-3
Original file line numberDiff line numberDiff line change
@@ -179,11 +179,19 @@ export default {
179179
return (
180180
<>
181181
<title>{title}</title>
182-
<meta property="og:title" content={title} />
182+
<meta property="og:title" content={title} key="meta-og-title" />
183183
{description && (
184184
<>
185-
<meta name="description" content={description} />
186-
<meta property="og:description" content={description} />
185+
<meta
186+
name="description"
187+
content={description}
188+
key="meta-description"
189+
/>
190+
<meta
191+
property="og:description"
192+
content={description}
193+
key="meta-og-description"
194+
/>
187195
</>
188196
)}
189197
{canonical && <link rel="canonical" href={canonical} />}

0 commit comments

Comments
 (0)