#Israel-upe-wallets
1 messages · Page 1 of 1 (latest)
Hey, yep you'd use this paramater when creating your Payment Element instance: https://stripe.com/docs/js/elements_object/create_payment_element#payment_element_create-options-wallets
elements.create('payment', { wallets: 'never' })
We are using the paymentIntent in the backend
Can we put that parameter in a paymentIntent in the backend side?
No, there's no way to disable wallets on the Payment Intent itself
They can just be disabled on the payment UI
Oh, nice! Do you have an example for do it?
Specifically for React?
Yes
<PaymentElement options={{ wallets: 'never' }} />
<PaymentElement options={{ wallets: { applePay: 'never', googlePay: 'never' }}}/>
It was necessary do like it. Thank you 🙂