Skip to content

Commit d7c46f1

Browse files
committed
Increase debounce wait time for todo item updates to 3000ms
1 parent ba36c2e commit d7c46f1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/TodoBoards.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ export function TodoBoards({ projectId }: { projectId: string }) {
330330
// Refetch to ensure consistency with backend
331331
await todoItemsCollection.utils.refetch();
332332
},
333-
strategy: debounceStrategy({ wait: 1_500 }),
333+
strategy: debounceStrategy({ wait: 3000 }),
334334
});
335335

336336
const { data: boards, isLoading: isLoadingBoards } = useLiveQuery(

0 commit comments

Comments
 (0)