Adjust title tag to only have one text node (no internal spaces)
This commit is contained in:
parent
1f247416e8
commit
8b8e603250
|
@ -15,7 +15,7 @@ export function SEO(props: {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Head>
|
<Head>
|
||||||
<title>{title} | Manifold Markets</title>
|
<title>{`${title} | Manifold Markets`}</title>
|
||||||
|
|
||||||
<meta
|
<meta
|
||||||
property="og:title"
|
property="og:title"
|
||||||
|
|
|
@ -42,7 +42,7 @@ function MyApp({ Component, pageProps }: AppProps<ManifoldPageProps>) {
|
||||||
`}
|
`}
|
||||||
</Script>
|
</Script>
|
||||||
<Head>
|
<Head>
|
||||||
<title>Manifold Markets — A market for every question</title>
|
<title>{'Manifold Markets — A market for every question'}</title>
|
||||||
|
|
||||||
<meta
|
<meta
|
||||||
property="og:title"
|
property="og:title"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user