diff --git a/components/lib/tooltip/Tooltip.js b/components/lib/tooltip/Tooltip.js index c6c86129bf..6fb343f001 100644 --- a/components/lib/tooltip/Tooltip.js +++ b/components/lib/tooltip/Tooltip.js @@ -470,7 +470,9 @@ export const Tooltip = React.memo( }, [visibleState]); useUpdateEffect(() => { - if (visibleState) { + const position = getPosition(currentTargetRef.current); + + if (visibleState && position !== 'mouse') { applyDelay('updateDelay', () => { updateText(currentTargetRef.current, () => { align(currentTargetRef.current);