Skip to content

Commit 1a8c5d5

Browse files
Osiris8LekoArts
andauthored
chore(docs): Fix Seo imports in tutorial (#36587)
Co-authored-by: Lennart <lekoarts@gmail.com>
1 parent d6c8f4b commit 1a8c5d5

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

docs/docs/tutorial/part-4/index.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -862,7 +862,7 @@ Follow the steps below to add a list of post filenames to your blog page.
862862
import * as React from 'react'
863863
import { graphql } from 'gatsby' // highlight-line
864864
import Layout from '../components/layout'
865-
import Seo from '../../components/seo'
865+
import Seo from '../components/seo'
866866
867867
const BlogPage = () => {
868868
return (
@@ -891,7 +891,7 @@ Alternatively, you can give each of your queries a unique name. Query names can
891891
import * as React from 'react'
892892
import { graphql } from 'gatsby'
893893
import Layout from '../components/layout'
894-
import Seo from '../../components/seo'
894+
import Seo from '../components/seo'
895895
896896
const BlogPage = () => {
897897
return (
@@ -934,7 +934,7 @@ In React, when you use the `.map()` method to render a list of elements, you sho
934934
import * as React from 'react'
935935
import { graphql } from 'gatsby'
936936
import Layout from '../components/layout'
937-
import Seo from '../../components/seo'
937+
import Seo from '../components/seo'
938938
939939
const BlogPage = ({ data }) => { // highlight-line
940940
return (

docs/docs/tutorial/part-5/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ Now that your GraphQL query is all set up, it's time to replace the page query i
419419
import * as React from 'react'
420420
import { graphql } from 'gatsby'
421421
import Layout from '../components/layout'
422-
import Seo from '../../components/seo'
422+
import Seo from '../components/seo'
423423

424424
const BlogPage = ({ data }) => {
425425
return (
@@ -502,7 +502,7 @@ Now that your GraphQL query is all set up, it's time to replace the page query i
502502
import * as React from 'react'
503503
import { graphql } from 'gatsby'
504504
import Layout from '../components/layout'
505-
import Seo from '../../components/seo'
505+
import Seo from '../components/seo'
506506

507507
const BlogPage = ({ data }) => {
508508
return (

0 commit comments

Comments
 (0)