Update debounce behaviour when hovering over list items

This commit is contained in:
Timothy Armes
2023-07-20 08:50:34 +02:00
parent 6baa63c23d
commit 70b685fa99
2 changed files with 3 additions and 8 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ export const {
} = atomWithDebounce<string | null>(null);
export const { debouncedValueAtom: debouncedHoveredListTournamentIdAtom } =
atomWithDebounce<string | null>(null, 300, true);
atomWithDebounce<string | null>(null, 1000, 100);
export const filteredTournamentsByTimeControlAtom = atom((get) => {
const tournaments = get(tournamentsAtom);