From a87ecd3f52da796cfef1e746f2aea185ca2656ea Mon Sep 17 00:00:00 2001 From: Groom Book CTO Date: Thu, 19 Mar 2026 17:16:58 +0000 Subject: [PATCH] fix: remove unused updateClientSchema (lint error) Co-Authored-By: Claude Opus 4.6 --- apps/api/src/routes/clients.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/api/src/routes/clients.ts b/apps/api/src/routes/clients.ts index b028bc1..90313a2 100644 --- a/apps/api/src/routes/clients.ts +++ b/apps/api/src/routes/clients.ts @@ -13,7 +13,6 @@ const createClientSchema = z.object({ notes: z.string().max(2000).optional(), }); -const updateClientSchema = createClientSchema.partial(); // List clients — defaults to active only, ?includeDisabled=true shows all clientsRouter.get("/", async (c) => {