Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/scripts/dist/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ 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();
}
Expand Down
6 changes: 3 additions & 3 deletions packages/scripts/src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ export class App extends ENGrid {
) {
new RememberMe(this.options.RememberMe);
}
} catch (e) {}
} catch (e) { }

if (this.options.NeverBounceAPI)
new NeverBounce(
Expand Down Expand Up @@ -425,7 +425,7 @@ 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();
}
Expand Down Expand Up @@ -483,7 +483,7 @@ export class App extends ENGrid {
) {
showDebugPanel = true;
}
} catch (e) {}
} catch (e) { }
if (showDebugPanel) {
new DebugPanel(this.options.PageLayouts);
}
Expand Down
Loading