+2
src/components/dialogs/nuxs/index.tsx
+2
src/components/dialogs/nuxs/index.tsx
···
21
21
import {type SessionAccount, useSession} from '#/state/session'
22
22
import {useOnboardingState} from '#/state/shell'
23
23
import {isSnoozed, snooze, unsnooze} from '#/components/dialogs/nuxs/snoozing'
24
+
import {ENV} from '#/env'
24
25
/*
25
26
* NUXs
26
27
*/
···
46
47
enabled: ({currentProfile}) => {
47
48
return (
48
49
isNative &&
50
+
ENV !== 'e2e' &&
49
51
isExistingUserAsOf('2025-12-16T00:00:00.000Z', currentProfile.createdAt)
50
52
)
51
53
},
+4
-1
src/screens/Onboarding/index.tsx
+4
-1
src/screens/Onboarding/index.tsx
···
49
49
const findContactsEnabled =
50
50
useIsFindContactsFeatureEnabledBasedOnGeolocation()
51
51
const showFindContacts =
52
-
isNative && findContactsEnabled && !gate('disable_onboarding_find_contacts')
52
+
ENV !== 'e2e' &&
53
+
isNative &&
54
+
findContactsEnabled &&
55
+
!gate('disable_onboarding_find_contacts')
53
56
54
57
const [state, dispatch] = useReducer(
55
58
reducer,