We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I'm seeing memory kept around for longer then it needs to by lastNativeEvent:
react/packages/react-dom/src/events/EnterLeaveEventPlugin.js
Line 49 in 26ba38a
In my case it's holding on to detached DOM nodes/Fiber.
I think we should be able to use WeakSet since we're doing a === check. Otherwise we should consider timing it out in some way.
===
The text was updated successfully, but these errors were encountered:
Related #17006
Sorry, something went wrong.
Fixed by #17585
No branches or pull requests
I'm seeing memory kept around for longer then it needs to by lastNativeEvent:
react/packages/react-dom/src/events/EnterLeaveEventPlugin.js
Line 49 in 26ba38a
In my case it's holding on to detached DOM nodes/Fiber.
I think we should be able to use WeakSet since we're doing a
===
check. Otherwise we should consider timing it out in some way.The text was updated successfully, but these errors were encountered: