Skip to content

Commit 85fbb57

Browse files
committed
Added ideal payment support
1 parent 6d85053 commit 85fbb57

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

services/stripeService.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export async function createCheckoutSession(priceId, name, email, productId, pla
1515

1616
return stripe.checkout.sessions.create({
1717
mode: 'subscription',
18-
payment_method_types: ['card'],
18+
payment_method_types: ['card', 'ideal'],
1919
customer: customer.id,
2020
line_items: [{ price: priceId, quantity: 1 }],
2121
success_url: `${env.FRONTEND_URL}/success`,

0 commit comments

Comments
 (0)