DEV Community

Discussion on: Awesome animated cursor with React Hooks⚡️

Collapse
 
andrewchmr profile image
Andriy Chemerynskiy

Well, I have no idea why it happens :D

As a workaround, you can try adding mouseenter/mouseleave events to document.body instead of document to fix this issue

Try this:

 document.body.addEventListener("mouseenter", onMouseEnter);
 document.body.addEventListener("mouseleave", onMouseLeave);

Thank you for your comment!