Skip to content

Commit

Permalink
temp: causing issues in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
smbea committed Jul 13, 2023
1 parent 859a0a1 commit f745474
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/components/entries/Tooltip.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,11 @@ export default function Tooltip(props) {
const tooltipRef = useRef(null);

const showTooltip = async () => {
setTimeout(() => {
setShow(true);
}, 200);

// setTimeout(() => {
setShow(true);

// }, 200);
};
const hideTooltip = () => setShow(false);

Expand Down

0 comments on commit f745474

Please sign in to comment.