-
Notifications
You must be signed in to change notification settings - Fork 202
New issue
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
Error on redux.dispatch #519
Comments
Updated to newest angular - still same error |
Same thing for me :( |
Are you all using Redux 4.0? |
Newest Version. Should be 4.0 |
Same problem here. Only downgrade of Redux to v3.7.2 fixes the issue. |
Downgraded to Redux v3.7.2 from Redux 4. I'm using "@angular-redux/store": "7", but still had the same problem. Though when I combined my reducers, I had to specify the IAppState in order for it to work. export const rootReducer = combineReducers({ |
Same problem here. |
PR to fix this issue: #522 In the mean time I've been just updating the respective .d.ts with |
Working the first time on Redux with angular and facing the same issue. Any help? |
@akashseth31 it is a bug |
Is this fixed ? |
PR isn't merged yet. |
Any ETA or any workaround ? Please advise. |
Use ngrx/store |
i want to use it in conjunction with @angular-redux/form. |
Then you have to wait for the fix or downgrade redux to version v3.7.2 which has already been said in this issue. |
if we use angular-redux/store and angular-redux/form, how to we downgrade redux alone when using npm from angular cli ? |
@kyyash My package.json looks like this.
|
also add |
@danieldaeschle looks like this has been fixed in #527 . (EDIT the earlier thing I had said about installing via github did not actually work. Think these ones do though...) It's not released as 9.0.0 yet, but depending on how bold you are feeling, you could do one of 2 things for workaround: First OptionFork, clone, install, pack tarball, push to your github repo, and then npm install tarball from there.
git clone https://github.com/<you>/store.git
cd store
npm install
npm pack
mkdir dist
mv angular-redux-store-9.0.0.tgz dist
# add the tarball to .gitignore, because otherwise ignored
echo "\!dist/*.tgz" >> .gitignore
git add -A
git commit -nm "add 9.0.0 tarball"
git push
# from your project repo:
npm install https://github.com/<you>/store/blob/<commit>/dist/angular-redux-store-9.0.0.tgz\?raw\=true --save Second OptionTrust a complete stranger, and use their tarball (noting that they are not a package manager, and could move or remove this at any point). npm install https://github.com/TyGuy/store/blob/8d34c3bf9aa4d6018d16f0f961620ec85571ea5d/dist/angular-redux-store-9.0.0.tgz\?raw\=true --save |
Redux 4 support is included in @angular-redux/store@9 |
I still have this same issue when upgrading my project from Angular 6 to Angular 7. The only difference is that it is complaining because of the incorrect implementation:
I have the current packages installed:
What am I missing? |
This is a...
What toolchain are you using for transpilation/bundling?
ngc
Environment
NodeJS Version: 8.11.1
Typescript Version: 2.4.2
Angular Version: 5.0.0
@angular-redux/store version: 7.1.1
@angular/cli version: 1.7.4
OS: Ubuntu 16.04
Expected Behaviour:
It should work 😆
Actual Behaviour:
This message on compiling:
Additional Notes:
Message transalted from german:
The text was updated successfully, but these errors were encountered: