From 6116d3c7ab4b0b5e0f42fc0a9db58ea1feceb99c Mon Sep 17 00:00:00 2001 From: Flea Flicker Date: Fri, 17 Apr 2026 22:39:19 +0000 Subject: [PATCH] fix(GRO-785): restore eslint-disable for intentionally unused _tipSplits var Co-Authored-By: Paperclip --- apps/api/src/routes/invoices.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/api/src/routes/invoices.ts b/apps/api/src/routes/invoices.ts index 9e9f04e..aaa7fb3 100644 --- a/apps/api/src/routes/invoices.ts +++ b/apps/api/src/routes/invoices.ts @@ -363,6 +363,7 @@ invoicesRouter.patch( } // Destructure tipSplits out — it belongs to a separate table, not the invoices column + // eslint-disable-next-line @typescript-eslint/no-unused-vars const { tipSplits: _tipSplits, ...updateBody } = body as Record; const update: Record = { ...updateBody, updatedAt: new Date() };