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
Creating a store like this $ngReduxProvider.createStoreWith(myReducer); causes the reducers receive arguments like this:
$ngReduxProvider.createStoreWith(myReducer);
{ state: {}, action: {type: "@@redux/INIT"} }
This prevents the reducer from returning initial state on the first run like this:
if (typeof state === 'undefined') { return initialState }
Reducer should be called instead with the following arguments:
{ state: undefined, action: {type: "@@redux/INIT"} }
The text was updated successfully, but these errors were encountered:
Looks like dist is outdated in 3.3.0 and does not include the fix from #55. Using master solved the problem.
dist
3.3.0
master
Sorry, something went wrong.
Thanks for the info, reopening as a reminder to myself to look into that.
dist has been updated, let me know if I missed something. Thanks.
wbuchwalter
No branches or pull requests
Creating a store like this
$ngReduxProvider.createStoreWith(myReducer);
causes the reducers receive arguments like this:This prevents the reducer from returning initial state on the first run like this:
Reducer should be called instead with the following arguments:
The text was updated successfully, but these errors were encountered: