From 467c428c4c281ee792f4f3e077315ff414c786a9 Mon Sep 17 00:00:00 2001 From: Groom Book CTO Date: Fri, 20 Mar 2026 02:17:50 +0000 Subject: [PATCH] chore: remove unused useNavigate import from Clients.tsx Co-Authored-By: Claude Opus 4.6 --- apps/web/src/pages/Clients.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/apps/web/src/pages/Clients.tsx b/apps/web/src/pages/Clients.tsx index c46d7f3..50afed9 100644 --- a/apps/web/src/pages/Clients.tsx +++ b/apps/web/src/pages/Clients.tsx @@ -1,5 +1,4 @@ import { useEffect, useState } from "react"; -import { useNavigate } from "react-router-dom"; import type { Client, GroomingVisitLog, Pet } from "@groombook/types"; // ─── Forms ─────────────────────────────────────────────────────────────────── @@ -42,7 +41,6 @@ const EMPTY_VISIT_LOG: VisitLogForm = { cutStyle: "", productsUsed: "", notes: " // ─── Component ─────────────────────────────────────────────────────────────── export function ClientsPage() { - const navigate = useNavigate(); const [clients, setClients] = useState([]); const [loading, setLoading] = useState(true); const [error, setError] = useState(null);