Skip to content

Commit

Permalink
fix(gatsby-remark-images): fix unresolved promise (#30418) (#30425)
Browse files Browse the repository at this point in the history
(cherry picked from commit c240813)

Co-authored-by: Ward Peeters <ward@coding-tech.com>
  • Loading branch information
GatsbyJS Bot and wardpeet authored Mar 23, 2021
1 parent 8930a5a commit e7691ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/gatsby-remark-images/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -427,9 +427,9 @@ module.exports = (
}
node.type = `html`
node.value = rawHTML

resolve(node)
}

return resolve(node)
})
} else {
// Image isn't relative so there's nothing for us to do.
Expand Down

0 comments on commit e7691ec

Please sign in to comment.