#dystroy
1 messages · Page 1 of 1 (latest)
It's for a reusable setup intent, to store a customer profile and payment method at stripe
So there's no payment element
I'm calling the API through the async-stripe rust library
oh sorry, I get what you mean, the front uses the stripe.js script, it's Elements, the PaymentElement, which is rendered using the setup intent I create at stripe using the API
Gotcha
Then you can disable Google Pay via setting googlePay to never when you render your PaymentElement component: https://stripe.com/docs/js/elements_object/create_payment_element#payment_element_create-options-wallets-googlePay
It looks like that's exactly what I need. I was assuming it would be defined by the SetupIntent, didn't look this side.
Thanks!