We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff7fc24 commit 6f6c27dCopy full SHA for 6f6c27d
beta/src/components/Seo.tsx
@@ -75,7 +75,11 @@ export const Seo = withRouter(
75
<meta name="twitter:site" key="twitter:site" content="@reactjs" />
76
<meta name="twitter:creator" key="twitter:creator" content="@reactjs" />
77
{title != null && (
78
- <meta name="twitter:title" key="twitter:title" content={title} />
+ <meta
79
+ name="twitter:title"
80
+ key="twitter:title"
81
+ content={isHomePage ? 'React' : title}
82
+ />
83
)}
84
{description != null && (
85
<meta
0 commit comments