Skip to content

Commit

Permalink
fix phone number on android
Browse files Browse the repository at this point in the history
  • Loading branch information
charliecruzan-stripe committed Sep 13, 2023
1 parent 6922a14 commit 67cd90d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -889,7 +889,7 @@ internal fun mapFromShippingContact(googlePayResult: GooglePayResult): WritableM
googlePayResult.name
name.putString("givenName", googlePayResult.shippingInformation?.name)
map.putMap("name", name)
map.putString("phoneNumber", googlePayResult.shippingInformation?.phone)
map.putString("phoneNumber", googlePayResult.phoneNumber)
val postalAddress = WritableNativeMap()
postalAddress.putString("city", googlePayResult.shippingInformation?.address?.city)
postalAddress.putString("country", googlePayResult.shippingInformation?.address?.country)
Expand Down

0 comments on commit 67cd90d

Please sign in to comment.