summaryrefslogtreecommitdiffhomepage
path: root/packages
diff options
context:
space:
mode:
authorGitHub Action <[email protected]>2026-01-24 16:55:54 +0000
committerGitHub Action <[email protected]>2026-01-24 16:55:54 +0000
commitea8d727e2836287d1de14f6530686aef597f8f2b (patch)
tree5151733f9546a5769c0b78714a5637169db67c7c /packages
parentb590bda5ed905a626d921123f2acb2d7b7420757 (diff)
downloadopencode-ea8d727e2836287d1de14f6530686aef597f8f2b.tar.gz
opencode-ea8d727e2836287d1de14f6530686aef597f8f2b.zip
chore: generate
Diffstat (limited to 'packages')
-rw-r--r--packages/console/app/src/routes/stripe/webhook.ts2
1 files changed, 1 insertions, 1 deletions
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