From 03aa3a4799b255247a54fb982f8aee2196d51b31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Fichot?= Date: Wed, 26 Jul 2017 22:56:11 +0200 Subject: [PATCH] Fixing createNode doesn't exists https://github.com/gatsbyjs/gatsby/issues/1612 --- packages/gatsby-source-wordpress/src/gatsby-node.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/gatsby-source-wordpress/src/gatsby-node.js b/packages/gatsby-source-wordpress/src/gatsby-node.js index a278bde3b1958..9a590bc9961fa 100644 --- a/packages/gatsby-source-wordpress/src/gatsby-node.js +++ b/packages/gatsby-source-wordpress/src/gatsby-node.js @@ -115,7 +115,7 @@ exports.sourceNodes = async ( console.log(``) for (let route of validRoutes) { - await fetchData(route, auth, createNode) + await fetchData(route, createNode) console.log(``) }