We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 349e5a1 commit 570c9b7Copy full SHA for 570c9b7
src/components/Tooltip/Tooltip.tsx
@@ -276,6 +276,9 @@ const Tooltip = ({
276
return
277
}
278
handleShow(false)
279
+ if (tooltipShowDelayTimerRef.current) {
280
+ clearTimeout(tooltipShowDelayTimerRef.current)
281
+ }
282
283
284
const handleEsc = (event: KeyboardEvent) => {
@@ -403,6 +406,12 @@ const Tooltip = ({
403
406
setRendered(false)
404
407
405
408
setActiveAnchor(null)
409
410
411
412
+ if (tooltipHideDelayTimerRef.current) {
413
+ clearTimeout(tooltipHideDelayTimerRef.current)
414
415
return true
416
417
return false
0 commit comments