Skip to content

Commit

Permalink
fix: phone number on ShippingContact is a string (#1349)
Browse files Browse the repository at this point in the history
  • Loading branch information
huextrat authored Apr 6, 2023
1 parent 6335dad commit 5ead69e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types/ApplePay.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ interface ContactName {
export interface ShippingContact {
emailAddress?: string;
name: ContactName;
phoneNumber?: number;
phoneNumber?: string;
postalAddress: PostalAddress;
}

Expand Down

0 comments on commit 5ead69e

Please sign in to comment.