Răsfoiți Sursa

chore: generate

GitHub Action 2 luni în urmă
părinte
comite
ea8d727e28
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      packages/console/app/src/routes/stripe/webhook.ts

+ 1 - 1
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