Bluesky app fork with some witchin' additions 💫

disable nux in e2e (#9551)

authored by samuel.fm and committed by

GitHub df4e8883 b48ca131

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