#marcos_error
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/1293509267915018270
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Are you able to reproduce on this quickstart ?
https://docs.stripe.com/payments/quickstart?platform=web&client=html&lang=node
I think the issue is similar to the one posted here #dev-help message
We also use that library and we will keep an eye on it, but its weird that it has been working fine until today.
How are you mounting your Elements?
On a regular Nuxt.js application, first loading the stripe/v3 script and then creating the element
// the html tag where de element should be attached
const domEl = this.domElement
// the stripe element instance
this.stripeElement = createElement(elements, type, options)
this.stripeElement.mount(domEl)
document.appendChild(domEl)
I think it must be appended to the document before you can mount Payment Element on it.
Yes, I think it should be approached that way and that is the solution being proposed in the library repo. What's strange to us is, why has it been working fine until know? ๐ค
I don't mean that it's something you should fix, just wanted to give you some context in case there has been a change on your side that might be breaking other integrations.
Where do you see the example?
This is the issue where it is being addressed
https://github.com/ectoflow/vue-stripe-js/issues/31
This is the issue in the stripe repo
https://github.com/stripe/stripe-js/issues/662
I believe Stripe has made a new change to their Stripe.js hosted at https://js.stripe.com/v3, which causes this library to error. In production it just errors to the console and doesn't break, ...
What happened? We are using @stripe/stripe-js in our Vue.js project, which loads the script from https://js.stripe.com/v3. Our Sentry monitoring has detected an issue that started occurring about 9...
Seems like an issue related to how the Vue lib mounts the Elements based on this comment?
What happened? We are using @stripe/stripe-js in our Vue.js project, which loads the script from https://js.stripe.com/v3. Our Sentry monitoring has detected an issue that started occurring about 9...
(looking at this internally do see what/if anything changed)
Ok, yes. We identified the issue and reverted it. Will be resolved in the next release/deploy of Stirpe.js later today
Awesome, thank you @late lava. I asume this issue is not in the package published as a module, right? ๐ https://github.com/stripe/stripe-js
In that case, how/where can we watch for updates in the Stripe.js script?
hi! I'm taking over this thread.
In that case, how/where can we watch for updates in the Stripe.js script?
I don't think you can. I recommend just waiting a little, since it should be fixed later today as mentioned above.
OK, thank you @timid otter ๐