Skip to content

Commit

Permalink
fix: add missing return to spb
Browse files Browse the repository at this point in the history
  • Loading branch information
cyl3x committed Jan 30, 2025
1 parent 7c0177a commit 72cefad
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,6 @@ export default class SwagPayPalSmartPaymentButtons extends SwagPaypalAbstractSta
* @return {Promise}
*/
createOrder(product = 'spb') {
super.createOrder(product);
return super.createOrder(product);
}
}

0 comments on commit 72cefad

Please sign in to comment.