about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/state/models/discovery/onboarding.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/state/models/discovery/onboarding.ts b/src/state/models/discovery/onboarding.ts
index 9b49beaf4..02a7b7a0b 100644
--- a/src/state/models/discovery/onboarding.ts
+++ b/src/state/models/discovery/onboarding.ts
@@ -49,12 +49,14 @@ export class OnboardingModel {
 
   nextScreenName(currentScreenName?: OnboardingStep) {
     if (currentScreenName === 'Welcome' || this.step === 'Welcome') {
+      track('Onboarding:Begin')
       this.step = 'RecommendedFeeds'
       return this.step
     } else if (
       this.step === 'RecommendedFeeds' ||
       currentScreenName === 'RecommendedFeeds'
     ) {
+      track('Onboarding:Complete')
       this.step = 'Home'
       return this.step
     } else {