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) => {