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
Here is the simple code
import Picker from "@emoji-mart/react"; import {useEffect, useState} from "react"; function App() { const [show, setShow] = useState(true); useEffect(() => { const timer = setInterval(() => { setShow((show) => !show); }, 500); return () => clearInterval(timer); }, []); return ( <div className="container"> <div className="picker"> {show ? <Picker/> : <span>Emoji mart test</span>} </div> </div> ); } export default App;
When the app start up:
After some minutes: (The memory is keep growing forevery)
The text was updated successfully, but these errors were encountered:
Any memory management suggestions? I'm also seeing a significant memory leak after hiding the picker and removing all references to it.
Sorry, something went wrong.
Closed by #868 ?
No branches or pull requests
Here is the simple code
When the app start up:
After some minutes: (The memory is keep growing forevery)

The text was updated successfully, but these errors were encountered: