nosferatu500 / react-sortable-tree

Drag-and-drop sortable component for nested data and hierarchies
https://nosferatu500.github.io/react-sortable-tree/
MIT License
150 stars 54 forks source link

Error: ResizeObserver loop completed with undelivered notifications. #73

Open kaigothe opened 7 months ago

kaigothe commented 7 months ago

I am writing to report an issue I encountered after installing a new component.

After successfully installing the component, I received an error message indicating ResizeObserver loop completed with undelivered notifications.. Despite attempting to troubleshoot the problem on my own, I have been unable to resolve it.

Could you please investigate this matter further and provide assistance in resolving the issue? If necessary, I am available to provide additional information or screenshots to help diagnose the problem.

Thank you for your attention to this matter. I look forward to your prompt response and resolution.

Sincerely

Bildschirmfoto 2024-03-12 um 16 39 51

kaigothe commented 7 months ago

my code as zip tree-app.zip

lefamoffat commented 7 months ago

Had the same issue and found a fix here: https://therichpost.com/solved-resizeobserver-loop-completed-with-undelivered-notifications-in-reactjs/

Essentially you just gotta add this to a .css file near the root.

iframe#webpack-dev-server-client-overlay{display:none!important}

I've added mine to the index.css and the error messages are gone

rolfhermancoen commented 7 months ago

@lefamoffat can confirm this fixes the issue

TheMacros commented 7 months ago

@lefamoffat This is not a good solution - it hides the overlay that displays all errors in your code. So you could not see any errors anymore.