Skip to content

Commit

Permalink
BILLMAGE-26: fix wrong debtor_person keys in widget
Browse files Browse the repository at this point in the history
  • Loading branch information
rommelfreddy committed Jun 5, 2024
1 parent d74643f commit 0fc149e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,8 @@ define([
},
"debtor_person": {
"salutation": this.inputs.gender(),
"firstname": this.inputs.firstname() ? this.inputs.firstname() : billingAddress.firstname,
"lastname": this.inputs.lastname() ? this.inputs.lastname() : billingAddress.lastname,
"first_name": this.inputs.firstname() ? this.inputs.firstname() : billingAddress.firstname,
"last_name": this.inputs.lastname() ? this.inputs.lastname() : billingAddress.lastname,
"email": customerEmail
},
"line_items": line_items
Expand Down

0 comments on commit 0fc149e

Please sign in to comment.