-
-
Notifications
You must be signed in to change notification settings - Fork 28
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
RangeError: Maximum call stack size exceeded #366
Comments
Not sure. Try undefined instead of null. |
Same error unfortunately. |
It only seems to be an issue with fetchAndAdd. fetch, fetchById and openDBChannel work everywhere. fetchAndAdd throws that error everywhere. |
can you add a debugger breakpoint and find where the error is ? |
It seems it may be due to this Vue bug vuejs/vue#9081 |
@richard-mckenna so your issue was unrelated to my library? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm having an issue getting vuex-easy-firestore (1.36.0) working with Vue (2.6.12) and Vuex (3.6.0). I have a simple module
If I call
dispatch('userData/fetchById', user.uid, { root: true })
in a vuex action it works fine and adds the user data to the store.If I call
dispatch('userData/fetchAndAdd', null, { root: true })
in a vuex action or in mounted() on a component, I get the following error:Any thoughts on what could be causing it. It's driving me crazy!
The text was updated successfully, but these errors were encountered: