diff --git a/packages/scripts/dist/app.js b/packages/scripts/dist/app.js index cc7c05f8..2f0ef469 100644 --- a/packages/scripts/dist/app.js +++ b/packages/scripts/dist/app.js @@ -256,10 +256,11 @@ export class App extends ENGrid { // Supporter Hub Features new SupporterHub(); // Digital Wallets Features - if (ENGrid.getPageType() === "DONATION") { + if (ENGrid.getPageType() === "DONATION" || + ENGrid.getPageType() === "EVENT") { new DigitalWallets(); - new PreferredPaymentMethod(); } + new PreferredPaymentMethod(); // Mobile CTA new MobileCTA(); // Live Frequency diff --git a/packages/scripts/src/app.ts b/packages/scripts/src/app.ts index 76a700dc..7de571ad 100644 --- a/packages/scripts/src/app.ts +++ b/packages/scripts/src/app.ts @@ -395,7 +395,6 @@ export class App extends ENGrid { new AddNameToMessage(); new ExpandRegionName(); - // Url Params to Form Fields new UrlToForm(); @@ -426,11 +425,15 @@ export class App extends ENGrid { new SupporterHub(); // Digital Wallets Features - if (ENGrid.getPageType() === "DONATION") { + if ( + ENGrid.getPageType() === "DONATION" || + ENGrid.getPageType() === "EVENT" + ) { new DigitalWallets(); - new PreferredPaymentMethod(); } + new PreferredPaymentMethod(); + // Mobile CTA new MobileCTA();