spell canonical correctly
This commit is contained in:
parent
e706c1c661
commit
46675107cd
1 changed files with 3 additions and 3 deletions
|
@ -21,7 +21,7 @@ class SEO extends React.Component {
|
||||||
asset,
|
asset,
|
||||||
channel,
|
channel,
|
||||||
});
|
});
|
||||||
const cannonicalLink = createCanonicalLink(asset, channel, pageUri);
|
const canonicalLink = createCanonicalLink(asset, channel, pageUri);
|
||||||
// render results
|
// render results
|
||||||
return (
|
return (
|
||||||
<Helmet
|
<Helmet
|
||||||
|
@ -30,9 +30,9 @@ class SEO extends React.Component {
|
||||||
link={[
|
link={[
|
||||||
{
|
{
|
||||||
rel : 'canonical',
|
rel : 'canonical',
|
||||||
href: cannonicalLink,
|
href: canonicalLink,
|
||||||
},
|
},
|
||||||
oEmbed.json(host, cannonicalLink),
|
oEmbed.json(host, canonicalLink),
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue