We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
looks like the pattern of this library violates the Middleware spec for Redux now when you have state stored locally.
perhaps there needs to be a solution the the on load method implemented in a thunk? or something of that sort?
The text was updated successfully, but these errors were encountered:
Did anyone find a solution for this? I'm experiencing the same issue
Sorry, something went wrong.
Same issue. This has been here a while - is this project even maintained anymore?
I removed this dependency from my project and used an alternative approach for the localStorage.
const savedState = loadState(); export const store = createStore(rootReducer, savedState, composeWithDevTools()); store.subscribe(() => { saveState(store.getState()); ` });
const savedState = loadState();
export const store = createStore(rootReducer, savedState, composeWithDevTools());
store.subscribe(() => {
No branches or pull requests
looks like the pattern of this library violates the Middleware spec for Redux now when you have state stored locally.
perhaps there needs to be a solution the the on load method implemented in a thunk? or something of that sort?
The text was updated successfully, but these errors were encountered: