Skip to content

Commit

Permalink
Fix address pre-populate on line 1 (#4183)
Browse files Browse the repository at this point in the history
  • Loading branch information
michelleb-stripe authored Sep 10, 2021
1 parent ff8c6e9 commit 7ef81af
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ internal fun FormFragmentArguments.getValue(id: IdentifierSpec) =
IdentifierSpec.Name -> this.billingDetails?.name
IdentifierSpec.Email -> this.billingDetails?.email
IdentifierSpec.Phone -> this.billingDetails?.phone
IdentifierSpec.Line2 -> this.billingDetails?.address?.line1
IdentifierSpec.Line1 -> this.billingDetails?.address?.line2
IdentifierSpec.Line1 -> this.billingDetails?.address?.line1
IdentifierSpec.Line2 -> this.billingDetails?.address?.line2
IdentifierSpec.City -> this.billingDetails?.address?.city
IdentifierSpec.State -> this.billingDetails?.address?.state
IdentifierSpec.Country -> this.billingDetails?.address?.country
Expand Down

0 comments on commit 7ef81af

Please sign in to comment.