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