#yoitsthischick420_unexpected
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/1318978661197811742
đ 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.
- yoitsthischick420_unexpected, 4 days ago, 3 messages
Hello
Thanks for sharing more details. That certainly feels wrong. I don't have the specific device to test with but let me see if I can reproduce this.
thank you so much
Can you share the code you're using to initialize and render the element?
sure here it is
this.elements = stripe.elements({
clientSecret: this.stripeData.client_secret,
appearance: this.isPaymentFailure ? this.stripeAppearance.billing : this.stripeAppearance.shipping,
locale,
loader: 'always',
paymentMethodCreation: 'manual',
});
...
const paymentElementOptions = {
layout: "accordion",
terms: {
card: 'never',
},
wallets: {
applePay: 'never',
googlePay: 'never',
}
};
this.paymentElement = this.elements.create("payment", paymentElementOptions);
this.paymentElement.on('change', (event) => {
this.stripeData.paymentValid = event.complete;
})
this.paymentElement.mount(this.$refs.paymentElement);
Hello! I'm taking over and catching up...
We've been able to reproduce on our end, but can you try again with this line removed and see if the issue is still present? appearance: this.isPaymentFailure ? this.stripeAppearance.billing : this.stripeAppearance.shipping,
deploying that change, will let you know shortly
Ah, actually we just confirmed that's not going to impact the issue. This appears to be an issue on our end, and we'll work on a fix. No ETA for that going live, but you won't need to change anything on your end, so you can ignore for now.
ah okay good to know thank you so much for your time