Skip to content

Commit

Permalink
fix: set skip verification flag correctly from feature gate
Browse files Browse the repository at this point in the history
  • Loading branch information
MuckT committed Jun 21, 2024
1 parent aa3568a commit 780994e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/onboarding/steps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export const onboardingPropsSelector = createSelector(
StatsigFeatureGates.SHOW_CLOUD_ACCOUNT_BACKUP_RESTORE
)

const skipVerification = getFeatureGate(StatsigFeatureGates.SHOW_ONBOARDING_PHONE_VERIFICATION)
const skipVerification = !getFeatureGate(StatsigFeatureGates.SHOW_ONBOARDING_PHONE_VERIFICATION)

Check warning on line 84 in src/onboarding/steps.ts

View check run for this annotation

Codecov / codecov/patch

src/onboarding/steps.ts#L84

Added line #L84 was not covered by tests

return {
recoveringFromStoreWipe,
Expand Down

0 comments on commit 780994e

Please sign in to comment.