tehawtness
tehawtness

Reputation: 288

Top row of Stripe PaymentElement not showing

I'm trying to integrate Stripe into a React app and everything works but I can't seem to get the top row to show up: sample PaymentElement img

What am I missing?

Upvotes: 1

Views: 105

Answers (1)

alex
alex

Reputation: 2784

See https://stripe.com/docs/payments/accept-a-payment?platform=web&ui=elements

Likely you haven't set automatic_payment_methods.enabled=true, or passed in the list of payment methods you want to manually enable in payment_method_types when creating the PaymentIntent.

Upvotes: 1

Related Questions