Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Commit

Permalink
Apollo only permits rehydrating state.apollo.data, see vercel/next.js…
Browse files Browse the repository at this point in the history
  • Loading branch information
sedubois committed Jan 17, 2017
1 parent ee2da7f commit 7a1090e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion hocs/withData.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,14 @@ export default ComposedComponent => (
));
}

const state = reduxStore.getState();
return {
initialState: reduxStore.getState(),
initialState: {
...state,
apollo: {
data: state.apollo.data,
},
},
headers,
};
}
Expand Down

0 comments on commit 7a1090e

Please sign in to comment.