#edoardomistretta_docs
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
đ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1481958613512880209
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- edoardomistretta_docs, 16 hours ago, 12 messages
hi there!
The tech team says: "That property doesn't exist in the types, and even if set, it does absolutely nothing"
The code you shared is what you use when you create the Payment Element?
Because wallets[link]:never should work: https://docs.stripe.com/js/elements_object/create_payment_element#payment_element_create-options-wallets
"That property doesn't exist in the types, and even if set, it does absolutely nothing"
I'm guessing you are setting the property in the wrong place. because it does exist, and it does work.
you should set it something like this:
elements.create('payment', {
// add all your options here
// and to disable link:
wallets: { link: 'never' }
})`
ok let me check with the team
we use a react wrapper of stripe.js (@stripe/react-stripe-js). my img was about the options we pass to the
<Elements stripe={stripe} options={stripeOptions}>
the Elements component doesn't have a wallet option, so that's normal.
are you using the Payment Element? if so, then you should set the wallet option in the PaymentElement component.
ok, we applied the option to the PaymentElement and it works. thank you for your help.