Skip to content

Commit

Permalink
bugFix(order-address): fix middle name is null in residential address
Browse files Browse the repository at this point in the history
  • Loading branch information
belsman committed Oct 30, 2024
1 parent 0310fd6 commit aa1ef6c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@
' ' +
rcOrderAddress?.address?.residentialAddress?.givenName +
' ' +
rcOrderAddress?.address?.residentialAddress?.midName +
(rcOrderAddress?.address?.residentialAddress?.midName || '') +
' ' +
rcOrderAddress?.address?.residentialAddress?.familyName
}}</ng-container
Expand Down

0 comments on commit aa1ef6c

Please sign in to comment.