-
Notifications
You must be signed in to change notification settings - Fork 14
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
Can't connect to store - Maximum call stack size exceeded #15
Comments
The app uses a socket connection to send payload back and forth. This could be because you are trying to send some non-serializable data. Would you be able to provide a sample repo where this is reproducible? |
Same problem here. I'm using latest mobx with nested stores, maybe that has something to do with it? |
Same here. Using Mobx 5.5.2 and nested stores as well. |
Found the issue, but I'm not sure how to fix it. I have a root store:
This code causes the "Maximum call stack size exceeded" error above. If I change the code to this:
It works, but then I cannot access the root store from the child stores. Is there a way to prevent Wiretap from parsing certain properties of a store (perhaps if they are marked private?) |
The text was updated successfully, but these errors were encountered: