diff --git a/src/integration/billing/stripe/StripeBillingIntegration.ts b/src/integration/billing/stripe/StripeBillingIntegration.ts index 0fed77bef0..cef269acc4 100644 --- a/src/integration/billing/stripe/StripeBillingIntegration.ts +++ b/src/integration/billing/stripe/StripeBillingIntegration.ts @@ -577,7 +577,8 @@ export default class StripeBillingIntegration extends BillingIntegration { try { // Let's create a setupIntent for the stripe customer const setupIntent: Stripe.SetupIntent = await this.stripe.setupIntents.create({ - customer: customerID + customer: customerID, + payment_method_types: ['card'] // 'card' by default but we can add other types here }); await Logging.logInfo({ tenantID: this.tenant.id,