Skip to content

Commit

Permalink
Merge branch 'develop' into fix/add-license-request
Browse files Browse the repository at this point in the history
  • Loading branch information
kodiakhq[bot] authored Aug 18, 2022
2 parents fb53011 + c87eedd commit b898b0a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion apps/meteor/client/providers/TooltipProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,10 @@ const TooltipProvider: FC = ({ children }) => {
setTooltip(null);
};

const handleClick = (): void => setTooltip(null);
const handleClick = (): void => {
setTooltip(null);
clearTimeout(timeout);
};

document.body.addEventListener('mouseover', handleMouseOver);
document.body.addEventListener('click', handleClick);
Expand Down

0 comments on commit b898b0a

Please sign in to comment.