Skip to content

Commit

Permalink
fix: typos
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasmerlin committed Sep 1, 2021
1 parent 321eb5c commit e182fcb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/SEO.astro
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export interface Props {
const {
title,
description,
canoncial,
canonical,
noindex,
nofollow,
openGraph
Expand All @@ -47,7 +47,7 @@ if (openGraph) {
---
{ title ? <title>{title}</title> : null }

{ canoncial ? (
{ canonical ? (
<link
rel="canonical"
href={canonical}
Expand All @@ -63,7 +63,7 @@ if (openGraph) {

<meta
name="robots"
contents={`${noindex ? 'noindex' : 'index'},${nofollow ? 'nofollow' : 'follow'}`}
content={`${noindex ? 'noindex' : 'index'},${nofollow ? 'nofollow' : 'follow'}`}
>

{ openGraph ? (
Expand Down

0 comments on commit e182fcb

Please sign in to comment.