#edoardomistretta_docs

1 messages ¡ Page 1 of 1 (latest)

quiet thistleBOT
#

👋 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.

tight gale
#

this same thread

sullen pebble
#

hi there!

tight gale
#

The tech team says: "That property doesn't exist in the types, and even if set, it does absolutely nothing"

sullen pebble
#

The code you shared is what you use when you create the Payment Element?

#

"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' }
})`
tight gale
#

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}>
sullen pebble
#

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.

quiet thistleBOT
tight gale
#

ok, we applied the option to the PaymentElement and it works. thank you for your help.