From 7b07610613aefc8571a0f2cedc94b69474666e36 Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Wed, 11 Feb 2026 16:42:23 +0100 Subject: [PATCH] Fix --- web/components/widgets/tooltip.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/components/widgets/tooltip.tsx b/web/components/widgets/tooltip.tsx index ee2ba42..c289efe 100644 --- a/web/components/widgets/tooltip.tsx +++ b/web/components/widgets/tooltip.tsx @@ -45,7 +45,7 @@ export function Tooltip(props: { // that appear under the finger due to layout shifts (e.g., when a card is removed). // We keep a short global cooldown window during which tooltip "open" requests are ignored. // This helps avoid ghost tooltips appearing on adjacent cards after actions like hide/remove. - let nowFn = () => Date.now() + const nowFn = () => Date.now() // Module-level shared state // eslint-disable-next-line @typescript-eslint/no-explicit-any const g: any = (globalThis as any)