Skip to content

Commit

Permalink
[lint] Fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
lpinca committed Feb 8, 2024
1 parent 66e2a83 commit b1b40f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1395,7 +1395,7 @@ declare namespace Shopify {

interface ICustomer {
accepts_marketing?: boolean;
email_marketing_consent?: IEmailMarketingConsent,
email_marketing_consent?: IEmailMarketingConsent;
addresses?: ICustomerAddress[];
created_at: string;
currency: string;
Expand Down Expand Up @@ -2194,7 +2194,7 @@ declare namespace Shopify {

interface IOrderCustomer {
accepts_marketing?: boolean;
email_marketing_consent?: IEmailMarketingConsent,
email_marketing_consent?: IEmailMarketingConsent;
created_at: string;
default_address: ICustomerAddress;
email: string;
Expand Down

0 comments on commit b1b40f2

Please sign in to comment.