From e4a7774c40260b799532724369fd5e5ae0c83f85 Mon Sep 17 00:00:00 2001 From: Baptiste Arnaud Date: Fri, 10 May 2024 08:23:04 +0200 Subject: [PATCH] :children_crossing: (billing) Increase invoices limit list --- apps/builder/src/features/billing/api/listInvoices.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/builder/src/features/billing/api/listInvoices.ts b/apps/builder/src/features/billing/api/listInvoices.ts index d2ee2176c..f778e5725 100644 --- a/apps/builder/src/features/billing/api/listInvoices.ts +++ b/apps/builder/src/features/billing/api/listInvoices.ts @@ -62,6 +62,7 @@ export const listInvoices = authenticatedProcedure }) const invoices = await stripe.invoices.list({ customer: workspace.stripeId, + limit: 50, }) return { invoices: invoices.data