Skip to content

Commit 7b07610

Browse files
committed
Fix
1 parent f1bc2f9 commit 7b07610

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

web/components/widgets/tooltip.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export function Tooltip(props: {
4545
// that appear under the finger due to layout shifts (e.g., when a card is removed).
4646
// We keep a short global cooldown window during which tooltip "open" requests are ignored.
4747
// This helps avoid ghost tooltips appearing on adjacent cards after actions like hide/remove.
48-
let nowFn = () => Date.now()
48+
const nowFn = () => Date.now()
4949
// Module-level shared state
5050
// eslint-disable-next-line @typescript-eslint/no-explicit-any
5151
const g: any = (globalThis as any)

0 commit comments

Comments
 (0)