-
-
Notifications
You must be signed in to change notification settings - Fork 527
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
[BUG] ResizeObserver loop completed with undelivered notifications - webpack-dev-server related #1104
Comments
Can you test this after disabling all of your browser extensions? Or try it on another browser. Which solution from the StackOverflow question are you suggesting? The usage of I've also seen a suggestion to set the version for |
I guess |
Strange, we still have the same issue with |
Running into this issue as well on react 16.13, react-tooltip 5.26, using webpack with craco |
Although it seems like this is a "benign" error message (as in you can safely ignore it, shouldn't break anything on production app), it is still annoying to deal with it during development. Should've been fixed on #1137, which is Will reopen until we can figure out why it's back. |
Here's the webpack config on how to ignore the specific error (untested, let me know if it works) module.exports = {
//...
devServer: {
client: {
overlay: {
runtimeErrors: (error) => {
const ignoreErrors = [
"ResizeObserver loop limit exceeded",
"ResizeObserver loop completed with undelivered notifications.",
];
return !ignoreErrors.includes(error.message);
},
},
},
},
}; Again, we're assuming this error can be safely ignored, since there hasn't been any evidence of it interfering with expected tooltip behavior. Will still keep this open until we can figure out a permanent fix. |
This does not work for me. |
Hey guys, can you please provide a simple reproducible repository? I would like to take a look when I have some available time |
Only workaround I've found is
|
This issue is stale because it has not seen activity in 30 days. Remove the |
Still facing the same issue |
After upgrading to 5.28.0 from 4.2.21 just now, getting continuous Chrome, React 17, CRA 5 |
@zehawki can you please provide a reproducible example so I can take a detailed look into it? |
After upgrading to 5.21.5 (from 4.2.21), I am getting this error locally sometimes when tooltip is opened.
Maybe its due to the usage of ReactObserver
react-scripts v5 brings in webpack-dev-server v4 which shows runtime errors on full screen.
Potential fix and more details can be seen here.
Reproduction
Happens sometimes when opening the react tooltip component
Expected behavior
Not getting the error.
Screenshots
OS: MacOS.
Browser: Chrome
The text was updated successfully, but these errors were encountered: