Skip to content

Commit

Permalink
fix: prop name
Browse files Browse the repository at this point in the history
  • Loading branch information
Kikobeats committed Apr 13, 2020
1 parent 16e877b commit d702880
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/pages/_app.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ export default class App extends NextApp {
<Head>
{/* <!-- Basic --> */}
<meta charSet='utf-8' />
<meta http-equiv='x-ua-compatible' content='ie=edge' />
<meta httpEquiv='x-ua-compatible' content='ie=edge' />
{/* <!-- Search Engine --> */}
<meta name='description' content={meta.description} />
<meta name='image' content={meta.image} />
Expand All @@ -179,9 +179,9 @@ export default class App extends NextApp {
content='width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0'
/>
{/* <!-- Schema.org for Google --> */}
<meta itemprop='name' content={meta.title} />
<meta itemprop='description' content={meta.description} />
<meta itemprop='image' content={meta.image} />
<meta itemProp='name' content={meta.title} />
<meta itemProp='description' content={meta.description} />
<meta itemProp='image' content={meta.image} />
{/* <!-- Twitter --> */}
<meta name='twitter:card' content='summary_large_image' />
<meta name='twitter:title' content={meta.title} />
Expand Down

1 comment on commit d702880

@vercel
Copy link

@vercel vercel bot commented on d702880 Apr 13, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.