Skip to content
This repository has been archived by the owner on Feb 12, 2019. It is now read-only.

Commit

Permalink
remove extraneous node(s)
Browse files Browse the repository at this point in the history
  • Loading branch information
rdela committed Jun 21, 2018
1 parent 02d7569 commit a0d6d88
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions gatsby-node.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ exports.createPages = ({ boundActionCreators, graphql }) => {
path,
component: artistDetailPageTemplate,
context: {
id: node.artist.id
id: artist.id
}
});
});
Expand All @@ -57,7 +57,7 @@ exports.createPages = ({ boundActionCreators, graphql }) => {
path,
component: recordDetailPageTemplate,
context: {
id: node.record.id
id: record.id
}
});
});
Expand All @@ -69,8 +69,8 @@ exports.createPages = ({ boundActionCreators, graphql }) => {
path,
component: reviewDetailPageTemplate,
context: {
id: node.review.id,
mdid: `md-` + node.review.id
id: review.id,
mdid: `md-` + review.id
}
});
});
Expand Down

0 comments on commit a0d6d88

Please sign in to comment.