Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b6e5b4d

Browse files
committed
Fix missing page data processors
1 parent 6168748 commit b6e5b4d

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

examples/gatsbygram/src/components/post.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ class Post extends React.Component {
2626
render() {
2727
const { smallImage, likes, id } = this.props.post
2828
const { small } = smallImage.childImageSharp
29-
console.log(small)
3029
return (
3130
<Link
3231
data-testid="post"

packages/gatsby/src/redux/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ export const saveState = (): void => {
8282
pageData: state.pageData,
8383
modules: state.modules,
8484
queryModuleDependencies: state.queryModuleDependencies,
85+
pageDataProcessors: state.pageDataProcessors,
8586
// pages: state.pages,
8687
})
8788
}

0 commit comments

Comments
 (0)