Reputation: 288
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:
What am I missing?
Upvotes: 1
Views: 105
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