We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 157abaf commit 81f633cCopy full SHA for 81f633c
src/pages/blog.tsx
@@ -4,7 +4,7 @@ import BlogPost from "../components/BlogPost"
4
import BlogSidebar from "../components/BlogSidebar"
5
import { graphql } from "gatsby"
6
7
-export default ({ pageContext, data }) => {
+export default ({ pageContext, data }: any) => {
8
const posts = data.allMarkdownRemark.edges
9
.map((e: any) => e.node)
10
.sort((a: any, b: any) => {
@@ -39,6 +39,7 @@ export default ({ pageContext, data }) => {
39
guestBio={guestBio}
40
rawMarkdownBody={rawMarkdownBody}
41
isPermalink={false}
42
+ pageContext={pageContext}
43
/>
44
)
45
)}
0 commit comments