Skip to content

Commit

Permalink
fix: charset to charSet
Browse files Browse the repository at this point in the history
  • Loading branch information
9renpoto committed Sep 6, 2023
1 parent a819e11 commit e82df7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/SEO.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const SEO = ({ title, description, ogImage, keywords }: {
}) => (
<>
<title>{title}</title>
<meta charset="UTF-8" />
<meta charSet="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />

Check warning on line 12 in components/SEO.tsx

View check run for this annotation

Codecov / codecov/patch

components/SEO.tsx#L11-L12

Added lines #L11 - L12 were not covered by tests
<meta name="description" content={description} />
<meta property="og:title" content={title} />
Expand Down

0 comments on commit e82df7a

Please sign in to comment.