Skip to content
This repository has been archived by the owner on Jul 24, 2023. It is now read-only.

Commit

Permalink
fix: add missing return statement
Browse files Browse the repository at this point in the history
  • Loading branch information
CanRau committed Sep 25, 2019
1 parent af52d3d commit 532e2f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/gatsby-source-gaiama-donations/gatsby-node.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ module.exports.sourceNodes = async (
cache.set(cacheKey, donations)
}

generateContributions(donations.Items).forEach(item => {
return generateContributions(donations.Items).forEach(item => {
const contentDigest = crypto
.createHash(`md5`)
.update(JSON.stringify(item))
Expand Down

0 comments on commit 532e2f8

Please sign in to comment.