purchasePlan() PayStatus = "Cancelled" when using PayPal.

When using the wix-paid-plans purchasePlan() function, the wixPayStatus property is returned as “Cancelled” when using PayPal. Even though the transaction goes through successfully. When using a credit card leveraging Wix Pay the status is returned correctly. Seems like a bug, or am I missing something?

My code:

export function btnSubmit_click(event) {
wixPaidPlans.purchasePlan(planId)
.then((myPurchase) => {
let myWixPayStatus = myPurchase.wixPayStatus;
console.log(myWixPayStatus);
});