Hi,
Im trying to record sessions on a react based app , but when i see the replay , components with tooltips or hover statements stays on the screen and not changing back to its normal state
what i should see :

what i really see:

did it happend to someone who used react?
thats the function invoking the record and putting all the events inside the array:
const recordDom = () => {
record({
emit(event) {
if (isRecording) {
setEvents(events => [...events, event])
}
},
maskAllInputs: true,
})
}
or maybe someone did a better implementation for it in react apps?