-
Notifications
You must be signed in to change notification settings - Fork 37
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
Chrome Error: Maximum Call Stack Exceeded #37
Comments
I also tried to use ES6 modules as I usually do:
It resulted in an error:
|
This library works out of the box with POJOS and arrays and native JS types, so maybe this is happening because you have custom classes or Maps or Sets? If so, you can use something like |
Sorry I'm not using ImmutableJS, just plain old JS objects. Perhaps I should mention that I'm working on Windows. |
Are you doing any kind of circular dependency in your JS objects? What seems to be happening is that an object may be referencing itself directly or indirectly, making the trackForMutations function never finish. |
Probably not. If there was a circular dependency I'd expect the app not to work at all. But the app works on a daily basis. Isn't it so? |
Got the same issue, it's appears after migration into latest version of "redux": "4.0.1" |
Same issue here. |
I think it's a very important library for the Redux community.
I installed the library locally according to the instructions. Here is a production version of the app https://next-f2cee.firebaseapp.com/. I expect there to be some mutations and I wonder where. However I received this error, which doesn't seem to relate to a redux/state mutation:
Here is my index.js:
The text was updated successfully, but these errors were encountered: