Skip to content

Commit f20e74c

Browse files
committed
Increase table filter delay
1 parent b2e10c5 commit f20e74c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/stack-ui/src/components/data-table/data-table.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ export function DataTableManualPagination<TData, TValue>({
212212
React.useEffect(() => {
213213
const timer = setTimeout(() => {
214214
setRefreshCounter(x => x + 1);
215-
}, 500);
215+
}, 3_000);
216216
return () => clearTimeout(timer);
217217
}, [globalFilter]);
218218

0 commit comments

Comments
 (0)