You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Warning: Failed prop type: Invalid prop `currency` of value `MMK` supplied to `ReactStripeCheckout`, expected one of
["AED","AFN","ALL","AMD","ANG","AOA","ARS","AUD","AWG","AZN","BAM","BBD","BDT","BGN","BIF","BMD","BND","BOB","BRL","BSD","BWP","BZD","CAD","CDF","CHF","CLP","CNY","COP","CRC","CVE","CZK","DJF","DKK","DOP","DZD","EEK","EGP","ETB","EUR","FJD","FKP","GBP","GEL","GIP","GMD","GNF","GTQ","GYD","HKD","HNL","HRK","HTG","HUF","IDR","ILS","INR","ISK","JMD","JPY","KES","KGS","KHR","KMF","KRW","KYD","KZT","LAK","LBP","LKR","LRD","LSL","LTL","LVL","MAD","MDL","MGA","MKD","MNT","MOP","MRO","MUR","MVR","MWK","MXN","MYR","MZN","NAD","NGN","NIO","NOK","NPR","NZD","PAB","PEN","PGK","PHP","PKR","PLN","PYG","QAR","RON","RSD","RUB","RWF","SAR","SBD","SCR","SEK","SGD","SHP","SLL","SOS","SRD","STD","SVC","SZL","THB","TJS","TOP","TRY","TTD","TWD","TZS","UAH","UGX","USD","UYU","UZS","VND","VUV","WST","XAF","XCD","XOF","XPF","YER","ZAR","ZMW"].
However, according to https://stripe.com/docs/api?lang=python#country_spec_object, the supported currencies seems to be country dependant.
supported_payment_currencies: Currencies that can be accepted in the specified country (for payments).
So the question is:
Should we update this hardcoded list with all the accepted currencies (hence including MMK as well) or is there a way to make this dynamic based on the stripeKey="my_PUBLISHABLE_stripekey" prop that is being passed in?
The text was updated successfully, but these errors were encountered:
I tried passing in currency as
MMK
and it threw:MMK
seems to be supported as per https://stripe.com/docs/currencies.However, according to
https://stripe.com/docs/api?lang=python#country_spec_object
, the supported currencies seems to be country dependant.So the question is:
Should we update this hardcoded list with all the accepted currencies (hence including
MMK
as well) or is there a way to make this dynamic based on thestripeKey="my_PUBLISHABLE_stripekey"
prop that is being passed in?The text was updated successfully, but these errors were encountered: