chore(FE): Add setTableState to useEffect dependency arrays

This commit is contained in:
rstubryan
2026-03-04 14:11:17 +07:00
parent bb28ae8613
commit b786acf71a
7 changed files with 7 additions and 7 deletions
@@ -145,7 +145,7 @@ const FlockTable = () => {
useEffect(() => {
setTableState('flocks-table', pathname);
}, [pathname]);
}, [pathname, setTableState]);
const searchChangeHandler: ChangeEventHandler<HTMLInputElement> = (e) => {
setSearchValue(e.target.value);