-
Notifications
You must be signed in to change notification settings - Fork 213
Open
Description
I am successfully initializing the paypalcommercecredit payment option, however when I click the "Pay Later" button that is injected, the paypal modal opens and is stuck in a spinning state, and I receive the following error:
Here you can see the payment successfully injecting the pay later option:
This is what my initialization is:
const options = {
methodId: 'paypalcommercecredit',
paypalcommerce: {
container: '#checkoutButton--paypalcommercecredit',
clientId: clientId,
initializesOnCheckoutPage: true,
currencyCode: 'USD',
submitForm: () => {
console.log("paypalcommercecredit submitForm Triggered")
getRoot(self).setLoading(true)
// Example function
getRoot(self).service.submitOrder({payment: { methodId: 'paypalcommercecredit' }})
.then(() => {
return window.location.assign('/checkout/order-confirmation');
}).catch((err) => {
console.error("Order Submit Error", err)
return window.location.assign('/cart.php');
})
},
onComplete: () => console.log("On Complete Fired"),
onRenderButton: (resolve, reject) => {
console.log("paypalcommercecredit ON RENDER BUTTON??")
const hasError = getRoot(self).service.getState().errors.getInitializePaymentError();
if (hasError) {
console.error("PayPal on onRenderButton:", getRoot(self).service.getState().errors.getInitializePaymentError())
} else {
console.log("paypalcommercecredit onRenderButton success")
}
},
},
}
await service.initializePayment(options);
I have also ensured the PayLater option is enabled in BigCommerce
Currently running @bigcommerce/checkout-sdk" version": "1.183.0"
Any tips on debugging this would be great, thanks!
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels


