This happens only when unmounting the component quickly after mounting it.
react_devtools_backend.js:6 Warning: Can't perform a React state update on an unmounted component. This is a no-op, but it indicates a memory leak in your application. To fix, cancel all subscriptions and asynchronous tasks in a useEffect cleanup function.
in Component (created by Component)
in div (created by styled.div)
in styled.div
in div (created by styled.div)
in styled.div
in Unknown (created by SplitPane)
in div (created by styled.div)
in styled.div (created by SplitPane)
in SplitPane (created by Component)
in div (created by styled.div)
in styled.div (created by Component)
in Component (created by Component)
in Component (created by Component)
I believe this has to do with the dragStateHandlers hook and the window-level event listeners that are firing off a set state after it's been unmounted. I will have to look into ensuring they are cleaned up.
This happens only when unmounting the component quickly after mounting it.
I believe this has to do with the
dragStateHandlers
hook and the window-level event listeners that are firing off a set state after it's been unmounted. I will have to look into ensuring they are cleaned up.