From 0d0c72ba1f96074570d2205f7d6945dd25c73980 Mon Sep 17 00:00:00 2001 From: Marco Pedone Date: Fri, 3 Apr 2026 19:15:14 +0200 Subject: [PATCH] fix: remove unnecessary currency field from movimentiSchema and report columns --- apps/infoalloggi/src/server/api/routers/stripe_reports.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/apps/infoalloggi/src/server/api/routers/stripe_reports.ts b/apps/infoalloggi/src/server/api/routers/stripe_reports.ts index 33441e6..adc45f6 100644 --- a/apps/infoalloggi/src/server/api/routers/stripe_reports.ts +++ b/apps/infoalloggi/src/server/api/routers/stripe_reports.ts @@ -39,7 +39,6 @@ export const stripeReportsRouter = createTRPCRouter({ columns: [ "balance_transaction_id", "created_utc", - "currency", "customer_email", "customer_name", "description", @@ -190,7 +189,6 @@ export const stripeReportsRouter = createTRPCRouter({ const movimentiSchema = z.object({ balance_transaction_id: z.string(), created_utc: z.string(), - currency: z.string(), customer_email: z.email().nullable(), customer_name: z.string().nullable(), description: z.string().nullable(),