From ddd2ee2bbe6fc507268631d568ea31aad5912000 Mon Sep 17 00:00:00 2001 From: Groom Book CTO Date: Tue, 17 Mar 2026 21:31:59 +0000 Subject: [PATCH] fix: remove eslint-disable comment for uninstalled react-hooks plugin (GRO-24) Co-Authored-By: Paperclip --- apps/web/src/pages/Reports.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/apps/web/src/pages/Reports.tsx b/apps/web/src/pages/Reports.tsx index 6383757..40d0087 100644 --- a/apps/web/src/pages/Reports.tsx +++ b/apps/web/src/pages/Reports.tsx @@ -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 });