diff options
author | Hailey <me@haileyok.com> | 2024-07-01 15:11:04 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-01 15:11:04 -0700 |
commit | 0012c6d40f63ad6ee1dd1fe13d5b56b4e9006425 (patch) | |
tree | 4907d7fa0d1d912e499f7469b4b6f509e2cfa7f0 /src/lib | |
parent | a9fe87b842b9e7cfca6f5acbf73aff555ce6eeee (diff) | |
download | voidsky-0012c6d40f63ad6ee1dd1fe13d5b56b4e9006425.tar.zst |
Add events to signup for captcha results (#4712)
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/statsig/events.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/lib/statsig/events.ts b/src/lib/statsig/events.ts index 3efc11a51..81a2d55e2 100644 --- a/src/lib/statsig/events.ts +++ b/src/lib/statsig/events.ts @@ -31,7 +31,13 @@ export type LogEvents = { 'splash:createAccountPressed': {} 'signup:nextPressed': { activeStep: number + phoneVerificationRequired?: boolean } + 'signup:backPressed': { + activeStep: number + } + 'signup:captchaSuccess': {} + 'signup:captchaFailure': {} 'onboarding:interests:nextPressed': { selectedInterests: string[] selectedInterestsLength: number |