diff --git a/src/components/dialogs/nuxs/index.tsx b/src/components/dialogs/nuxs/index.tsx index 63e11a7f4b..c0b1410e21 100644 --- a/src/components/dialogs/nuxs/index.tsx +++ b/src/components/dialogs/nuxs/index.tsx @@ -21,6 +21,7 @@ import {useProfileQuery} from '#/state/queries/profile' import {type SessionAccount, useSession} from '#/state/session' import {useOnboardingState} from '#/state/shell' import {isSnoozed, snooze, unsnooze} from '#/components/dialogs/nuxs/snoozing' +import {ENV} from '#/env' /* * NUXs */ @@ -46,6 +47,7 @@ const queuedNuxs: { enabled: ({currentProfile}) => { return ( isNative && + ENV !== 'e2e' && isExistingUserAsOf('2025-12-16T00:00:00.000Z', currentProfile.createdAt) ) }, diff --git a/src/screens/Onboarding/index.tsx b/src/screens/Onboarding/index.tsx index f3dd962b07..ef05345e07 100644 --- a/src/screens/Onboarding/index.tsx +++ b/src/screens/Onboarding/index.tsx @@ -49,7 +49,10 @@ export function Onboarding() { const findContactsEnabled = useIsFindContactsFeatureEnabledBasedOnGeolocation() const showFindContacts = - isNative && findContactsEnabled && !gate('disable_onboarding_find_contacts') + ENV !== 'e2e' && + isNative && + findContactsEnabled && + !gate('disable_onboarding_find_contacts') const [state, dispatch] = useReducer( reducer,