Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions docs/docs/tutorial/part-6/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,6 @@ The last step of Part 6 is to clean up your Blog page. Instead of rendering the
)
}

// highlight-start
export const query = graphql`
query {
allMdx(sort: {fields: frontmatter___date, order: DESC}) {
Expand All @@ -519,12 +518,11 @@ The last step of Part 6 is to clean up your Blog page. Instead of rendering the
title
}
id
slug
slug // highlight-line
}
}
}
`
// highlight-end

export default BlogPage
```
Expand Down