fix: remove eslint-disable comment for uninstalled react-hooks plugin (GRO-24)

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
Groom Book CTO
2026-03-17 21:31:59 +00:00
parent 15b9323590
commit ddd2ee2bbe
+1 -3
View File
@@ -200,9 +200,7 @@ export function ReportsPage() {
}
}
useEffect(() => {
loadAll();
}, []); // eslint-disable-line react-hooks/exhaustive-deps
useEffect(() => { loadAll(); }, []); // run on mount only
function exportCsv(type: "revenue" | "appointments" | "services") {
const qs = buildQuery(fromDate, toDate, { type });