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
here is the code it does not accept EUR currency formate
i have currency format dropdown in my project with options USD,EUR, GBP but it accept only USD for payments
The text was updated successfully, but these errors were encountered:
<PayPalButton
style={style}
title="Pay with"
// currency={
// currencyObject[store?.compaignReducer?.compaign?.currencyType]
// }
currency={"EUR"}
// amount={store?.compaignReducer?.compaign?.budgetLimit}
amount={10}
onSuccess={(details, data) => {
console.log(details, data);
dispatch(
addCompaign({
mode: "paypal",
})
);
}}........
here is the code it does not accept EUR currency formate
i have currency format dropdown in my project with options USD,EUR, GBP but it accept only USD for payments
The text was updated successfully, but these errors were encountered: