Skip to content

Commit

Permalink
chore(*): convert id to string in benchmark (#11606)
Browse files Browse the repository at this point in the history
`benchmarks/markdown` wasn't building because `context.id` must be a String. Fixed.
  • Loading branch information
Moocar authored and DSchau committed Feb 6, 2019
1 parent f735c07 commit 6ea9b16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchmarks/markdown/gatsby-node.js
Expand Up @@ -26,7 +26,7 @@ exports.createPages = ({ actions: { createPage } }) => {
path: `/path/${step}/`,
component: require.resolve(`./src/templates/blank.js`),
context: {
id: step,
id: step.toString(),
},
})
}
Expand Down

0 comments on commit 6ea9b16

Please sign in to comment.