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() };