Skip to content

Commit

Permalink
[DDW-680] Fix PoolPopOver click behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
mchappell committed Oct 11, 2021
1 parent e1709a0 commit 8525593
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -39,14 +39,14 @@ export function PoolPopOver(props: {
const poolId = props.stakePool.id;

const close = () => {
setIsHovered(false);
if (props.onClose) props.onClose();
};
return (
<>
<div
className={styles.triggerTarget}
onMouseEnter={() => setIsHovered(true)}
onMouseLeave={() => setIsHovered(false)}
ref={popOverTargetRef}
>
{props.children}
Expand Down

0 comments on commit 8525593

Please sign in to comment.