Проблемы с PayPal react
впервые подключаю платежную на сайте. Решил использовать react-paypal-button-v2, все подключено и работало в sandbox, подключил на Live и столкнулся с такой ситуацией

Вот мой paypal developer
и мой код:
const successPaymentHandler = (paymentResult) => {
dispatch(updateStatusPayingOrder(orderId, paymentResult))
};
<PayPalButton
currency="RUB"
amount={order.totalPrice}
onSuccess={(details, data) => {
alert("Transaction completed by " + details.payer.name.given_name);
// OPTIONAL: Call your server to save the transaction
return fetch("/paypal-transaction-complete", {
method: "post",
body: JSON.stringify({
orderId: data.orderId,
})
});
}, successPaymentHandler}
/>
