-
Notifications
You must be signed in to change notification settings - Fork 109
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
"ResizeObserver loop limit exceeded" since Chrome update 64 #104
Comments
Exactly the same issue with Chrome 64 or 65 |
Yes, same issue with 65 version |
Interesting 🤔, I haven't seen this myself yet, I'll have to test it out. It sounds like it might be the polyfill we are using. @que-etc any ideas here? |
We're getting this exception multiple times daily. Any update? |
We are having this issue as well over at EDCD/coriolis#208. Happens any time the window resizes. |
For me this error do not appear in chrome console but in "Javascript errors notifier" (chrome extension) |
Some discussion on |
To enhance on what @willyb321 said - I work on the same repository: I just updated the dependency to |
Any updates on this? Could this help: airbnb/visx#335? |
Followed the same path linked to by @joaovieira - tested locally - this seems to resolve the problem. setState anyway was called sync on the measure callback being not a react callback. When the measured element relies on the measured size to set its own size (well, sometimes you need to do that) this error occurs. i.e setState -> sync render -> size change -> sync observe callback -> setState -> inf. loop detected. The Do something like this in the console to see if you are affected:
Many auto error-tracking scripts/extensions listen to hth |
You can refer this: |
I'm seeing this error message in my console since Chrome update 64. Doesn't seem to have any effect on my UI. Is anybody else having the same issue?
The text was updated successfully, but these errors were encountered: