Open
Description
So, I'm developing a react app and using etro do edit some videos on it. Are there a proper way to do the unmount of a component using etro?
Asking because I realized that after a few edits on different videos they all start to play slow. Refreshing the page makes them perform well.
So far I'm using movie.pause()
and setting the reference (useRef
) to null for the unmount, but still not 100% performative as it is after a full refresh, which indicates some memory leak.