From 23f82d1394df828b7f200efd37e32a65758ed56a Mon Sep 17 00:00:00 2001 From: The-Hidden-Hand <45569116+The-Hidden-Hand@users.noreply.github.com> Date: Fri, 22 Apr 2022 18:51:21 +0000 Subject: [PATCH] Hotfix --- .../users-billing-info/users-billing-info.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/shared/components/users-billing-info/users-billing-info.component.ts b/src/app/shared/components/users-billing-info/users-billing-info.component.ts index 37d305325..ac3361fa0 100644 --- a/src/app/shared/components/users-billing-info/users-billing-info.component.ts +++ b/src/app/shared/components/users-billing-info/users-billing-info.component.ts @@ -390,7 +390,7 @@ export class UsersBillingInfoComponent implements OnDestroy, OnInit { this.store.dispatch(new UpgradeAccount(this.getSignupData({ stripe_token }))); } else { // Matomo events for new sign ups - this.matomoTracker.trackEvent('signup', 'stripe', this.planType, this.paymentType); + this.matomoTracker.trackEvent('signup', 'stripe', this.planType); this.inProgress = true; this.openAccountInitModal(); @@ -421,7 +421,7 @@ export class UsersBillingInfoComponent implements OnDestroy, OnInit { ); } else { // Matomo events for new sign ups - this.matomoTracker.trackEvent('signup', 'bitcoin', this.planType, this.paymentType); + this.matomoTracker.trackEvent('signup', 'bitcoin', this.planType); this.inProgress = true; this.openAccountInitModal();