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 f1bc2f9 commit 7b07610Copy full SHA for 7b07610
1 file changed
web/components/widgets/tooltip.tsx
@@ -45,7 +45,7 @@ export function Tooltip(props: {
45
// that appear under the finger due to layout shifts (e.g., when a card is removed).
46
// We keep a short global cooldown window during which tooltip "open" requests are ignored.
47
// This helps avoid ghost tooltips appearing on adjacent cards after actions like hide/remove.
48
- let nowFn = () => Date.now()
+ const nowFn = () => Date.now()
49
// Module-level shared state
50
// eslint-disable-next-line @typescript-eslint/no-explicit-any
51
const g: any = (globalThis as any)
0 commit comments