#yoitsthischick420_unexpected

1 messages ¡ Page 1 of 1 (latest)

tawdry gazelleBOT
#

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

nocturne ocean
shrewd hemlock
#

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.

nocturne ocean
#

thank you so much

tawdry gazelleBOT
shrewd hemlock
#

Can you share the code you're using to initialize and render the element?

nocturne ocean
#

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);
marble cape
#

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,

nocturne ocean
#

deploying that change, will let you know shortly

marble cape
#

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.

nocturne ocean
#

ah okay good to know thank you so much for your time