#sh3ft-currency-mismatch
1 messages · Page 1 of 1 (latest)
Hello! We'll be with you shortly. 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.
- sh3ft, 2 days ago, 6 messages
sh3ft-currency-mismatch
Can you share the payment intent id where this happened?
pi_3ONGj5B6P9f0Kuge0xr4aRbn_secret_C5P7hMkOaKHYEa4XGc69iaxKq
The issue is the customer you passed is a usd customer
So you need to pass usd in the frontend to match the currency
const options: StripeElementsOptions = {
mode: 'subscription',
amount:
currentProduct?.requested_currency?.unit_amount ??
currentProduct?.priceAmount,
currency:
currentProduct?.requested_currency?.currency ?? currentProduct?.currency,
}
This is what I'm currently doing is that what is breaking things?