From ea8d727e2836287d1de14f6530686aef597f8f2b Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sat, 24 Jan 2026 16:55:54 +0000 Subject: [PATCH] chore: generate --- packages/console/app/src/routes/stripe/webhook.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/console/app/src/routes/stripe/webhook.ts b/packages/console/app/src/routes/stripe/webhook.ts index 9e310dc07..c987158d3 100644 --- a/packages/console/app/src/routes/stripe/webhook.ts +++ b/packages/console/app/src/routes/stripe/webhook.ts @@ -519,7 +519,7 @@ export async function POST(input: APIEvent) { if (!workspaceID) throw new Error("Workspace ID not found") if (!invoiceID) throw new Error("Invoice ID not found") - const paymentIntent = await Billing.stripe().paymentIntents.retrieve(invoiceID); + const paymentIntent = await Billing.stripe().paymentIntents.retrieve(invoiceID) console.log(JSON.stringify(paymentIntent)) const errorMessage = typeof paymentIntent === "object" && paymentIntent !== null