docs: fix missing commas in Stripe plugin code examples (#4637)

Co-authored-by: Alex Yang <himself65@outlook.com>
This commit is contained in:
VicO
2025-09-14 09:13:34 +02:00
committed by Alex Yang
parent 0d9858a63b
commit 5b06218d7f

View File

@@ -257,7 +257,7 @@ await client.subscription.upgrade({
successUrl: "/dashboard",
cancelUrl: "/pricing",
annual: true, // Optional: upgrade to an annual plan
referenceId: "org_123" // Optional: defaults to the current logged in user ID
referenceId: "org_123", // Optional: defaults to the current logged in user ID
seats: 5 // Optional: for team plans
});
```