#sanderfish_unexpected
1 messages ยท Page 1 of 1 (latest)
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.
- sanderfish_unexpected, 1 day ago, 17 messages
๐ Welcome to your new thread!
โฒ๏ธ We'll be here soon! We typically respond in a few minutes, but in some cases we might need a bit more time (e.g., server's busy, you've got a complex question, etc.).
โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can 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/1250970844608462888
๐ Have more to share? Add details, code, screenshots, videos, etc. below.
In https://checkoutpage.checkoutpage.co/usd-0-2, the deferred intent parameter set the amount as USD 1
Not USD 0
The minimum amount follows the minimum amount of the settlement currency on your account
The settlement currency on your account is EUR, so NOK will be converted to EUR and check whether minimum amount condition is met
so it will check if minimum currency in EUR is met? which would be โฌ0.50?
Yes
ahhhh okay. we're doing this with Stripe Connect so it's hard to figure out what the minimum should be, and if we get it wrong, the payment element breaks entirely
another question. on US example, between refreshes, sometimes it doesn't display the payment element, even though it takes up space
this seems to happen every other refresh
when it happens, there's this google pay error in the console
If you're using Direct Charges, then it'll follow the minimum amount of the settlement currency on the connected account
I don't find all these errors on your website
Your website works fine for me
it seems to work 50% of the time on my end, same for other people on my team
Okay! After a few refreshes, I can see the download manifest error from google pay in the console, but the Payment Element still shows up for me
maybe the manifest error isn't related
seems to be less than 50%. maybe 1 out of 10. it feels very random
ahhh... we're setting visibility based on whether the element has started loading. seems like onLoaderStart is not always being called
Ah I see! That's likely the reason
Great to hear that you found out the cause of the issue
not sure why we're setting that visibility in the first place, I think we had some layout shifts before, but they seem to be gone
thanks for your help!
No problem! Happy to help ๐
@azure yacht sorry one more question; is there a way for me to find the settlement currency for a connected account?
What type of connected account do you use? Standard, Express or Custom?
Standard
In https://docs.stripe.com/currencies#minimum-and-maximum-charge-amounts,
The minimum amount you can charge depends on which bank account settlement currency the payment would be paid out to.
For Standard connected account, there will always be a default currency of the country: https://docs.stripe.com/payouts#supported-accounts-and-settlement-currencies
You can find the default_currency of a country using Country Spec API: https://docs.stripe.com/api/country_specs/retrieve
gotcha โ thanks