Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix order of checks in experiment (#4734)

authored by

dan and committed by
GitHub
1c6bfc02 d03dd8c8

+4 -3
+4 -3
src/view/shell/createNativeStackNavigatorWithAuth.tsx
··· 102 102 const {showLoggedOut} = useLoggedOutView() 103 103 const {setShowLoggedOut} = useLoggedOutViewControls() 104 104 const {isMobile, isTabletOrMobile} = useWebMediaQueries() 105 - const isNativePWIDisabled = isNative && gate('native_pwi_disabled') 106 105 if ( 107 - (!PWI_ENABLED || isNativePWIDisabled || activeRouteRequiresAuth) && 108 - !hasSession 106 + !hasSession && 107 + (!PWI_ENABLED || 108 + activeRouteRequiresAuth || 109 + (isNative && gate('native_pwi_disabled'))) 109 110 ) { 110 111 return <LoggedOut /> 111 112 }