Skip to content

Commit 2eb57c7

Browse files
authored
fix(gatsby-source-drupal): getNext no longer returns a value (#32125)
1 parent 3f3d5c8 commit 2eb57c7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/gatsby-source-drupal/src/gatsby-node.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -373,9 +373,8 @@ exports.sourceNodes = async (
373373
apiBase,
374374
urlPath
375375
)
376-
const dataForLanguage = await getNext(joinedUrl)
377376

378-
dataArray.push(...dataForLanguage)
377+
await getNext(joinedUrl)
379378
}
380379
}
381380

0 commit comments

Comments
 (0)