Skip to content

Commit

Permalink
run eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
linh-transcend committed Feb 1, 2024
1 parent 8fb7546 commit 9a71dfa
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/experience.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export interface ExperienceInput {
/** Time in months after which a user's opt-in consent should expire */
consentExpiry: number;
/** Behavior to exhibit when the user's consent has expired */
onConsentExpiry: OnConsentExpiry;
onConsentExpiry: OnConsentExpiry;
}

// default to []
Expand Down Expand Up @@ -132,9 +132,10 @@ export const REGIME_CONSENT_EXPIRY: Record<PrivacyRegime, number> = {
};

// default to prompt
export const REGIME_ON_CONSENT_EXPIRY: Record<PrivacyRegime, OnConsentExpiry> = {
GDPR: OnConsentExpiry.ResetOptIns
}
export const REGIME_ON_CONSENT_EXPIRY: Record<PrivacyRegime, OnConsentExpiry> =
{
GDPR: OnConsentExpiry.ResetOptIns,
};

/**
* construct default experience for regime
Expand Down

0 comments on commit 9a71dfa

Please sign in to comment.