Skip to content

Commit

Permalink
chore(docs): Fix tutorial part 8 react helmet step 4 (#18687)
Browse files Browse the repository at this point in the history
* chore(docs): Fix tutorial part 8 react helmet step 4

* chore: format
  • Loading branch information
DevS1993 authored and GatsbyJS Bot committed Oct 15, 2019
1 parent a775081 commit 16e7802
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions docs/tutorial/part-eight/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -307,10 +307,7 @@ export default ({ data }) => {
return (
<Layout>
// highlight-start
<SEO
title={post.frontmatter.title}
description={post.frontmatter.excerpt}
/>
<SEO title={post.frontmatter.title} description={post.excerpt} />
// highlight-end
<div>
<h1>{post.frontmatter.title}</h1>
Expand All @@ -326,9 +323,9 @@ export const query = graphql`
html
frontmatter {
title
// highlight-next-line
excerpt
}
// highlight-next-line
excerpt
}
}
`
Expand Down

0 comments on commit 16e7802

Please sign in to comment.