Skip to content

Commit

Permalink
Have submit billingAddress override options billingAddress
Browse files Browse the repository at this point in the history
  • Loading branch information
gilv93 committed Oct 25, 2024
1 parent 0daf4c3 commit 9f19208
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/recurly/alternative-payment-methods/gateways/adyen.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ class AdyenGateway extends Base {
}

async submitWebComponent (billingAddress) {
if (this.customerBillingAddress === undefined) { this.customerBillingAddress = billingAddress; }
if (billingAddress) { this.customerBillingAddress = billingAddress; }
return this.webComponent.submit();
}

Expand Down

0 comments on commit 9f19208

Please sign in to comment.