diff --git a/dashboard/server/services/StripeService.ts b/dashboard/server/services/StripeService.ts index 32d6382..25d6c0b 100644 --- a/dashboard/server/services/StripeService.ts +++ b/dashboard/server/services/StripeService.ts @@ -27,6 +27,7 @@ class StripeService { if (!this.stripe) throw Error('Stripe not initialized'); const checkout = await this.stripe.checkout.sessions.create({ + allow_promotion_codes: true, payment_method_types: ['card'], line_items: [ { price, quantity: 1 }