fix: remove react-hooks/exhaustive-deps comment (plugin not configured)

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
Scrubs McBarkley
2026-03-26 22:02:23 +00:00
parent 6547b12bce
commit 17a06898e5
+1 -2
View File
@@ -118,8 +118,7 @@ export function ClientsPage() {
next.delete("highlight");
return next;
}, { replace: true });
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [searchParams, clients, loading]);
}, [searchParams, clients, loading]); // selectClient is stable (defined in render scope)
async function loadPets(clientId: string) {
setPetsLoading(true);