Compare commits

...
Author SHA1 Message Date
Reece 8a0c3c2164 fix tooltips on tab 2025-12-10 18:33:42 +00:00
@@ -256,10 +256,11 @@ export const Tooltip: React.FC<TooltipProps> = ({
(children.props as any)?.onBlur?.(e);
return;
}
clearTimers();
if (!isPinned) setOpen(false);
(children.props as any)?.onBlur?.(e);
},
[isPinned, setOpen, children.props]
[isPinned, setOpen, children.props, clearTimers]
);
const handleKeyDown = useCallback((e: React.KeyboardEvent) => {