This repository was archived by the owner on Aug 19, 2022. It is now read-only.

Description
I have several rows which have hover styles. If I move my mouse over them slowly everything is fine.
When I move the mouse over them quickly I found that the hover styles were remaining.
I logged the e.target of the events that were happening onMouseEnter and onMouseLeave in resolve-interaction-styles-plugin.js and found that when the hover style was not being removed -e.target had the value of the next element that was entered, not the value that was left.
So this doesn't seem like the fault of radium, but it seems like something you may need to deal with! I would expect :hover to be a unique property that can only exist on a single element - it should not be able to get into a state where two different elements have the hover state at the same time.
I guess this implies some sort of global state than ensures this?