Skip to content

Commit

Permalink
Fix key, gatsby-plugin-sharp responsiveSizes returns originalImg; f…
Browse files Browse the repository at this point in the history
…ixes #1888 (#1908)
  • Loading branch information
fk authored and KyleAMathews committed Aug 24, 2017
1 parent cd68468 commit 3f5c54d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/gatsby-remark-images/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ module.exports = (
// Calculate the paddingBottom %
const ratio = `${1 / responsiveSizesResult.aspectRatio * 100}%`

const originalImg = responsiveSizesResult.originalImage
const originalImg = responsiveSizesResult.originalImg
const fallbackSrc = responsiveSizesResult.src
const srcSet = responsiveSizesResult.srcSet

Expand Down

0 comments on commit 3f5c54d

Please sign in to comment.