We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 67b62c8 + 2db4456 commit 1bcd1a4Copy full SHA for 1bcd1a4
1 file changed
src/hooks/useTableFilterStateValidation.ts
@@ -22,5 +22,6 @@ export const useTableFilterStateValidation = () => {
22
console.warn("Detected corrupted table filter state, resetting to defaults");
23
dispatch(resetCorruptedState());
24
}
25
- }, [dispatch, tableFilters.data, tableFilters.textFilter, tableFilters.stats]);
+ // eslint-disable-next-line react-hooks/exhaustive-deps
26
+ }, []);
27
};
0 commit comments