diff options
Diffstat (limited to 'src/view/shell/index.web.tsx')
-rw-r--r-- | src/view/shell/index.web.tsx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/view/shell/index.web.tsx b/src/view/shell/index.web.tsx index e36439c82..6182f1ba4 100644 --- a/src/view/shell/index.web.tsx +++ b/src/view/shell/index.web.tsx @@ -19,7 +19,7 @@ import {NavigationProp} from 'lib/routes/types' const ShellInner = observer(() => { const store = useStores() - const {isDesktop} = useWebMediaQueries() + const {isDesktop, isMobile} = useWebMediaQueries() const navigator = useNavigation<NavigationProp>() useEffect(() => { @@ -28,11 +28,11 @@ const ShellInner = observer(() => { }) }, [navigator, store.shell]) - const showBottomBar = !isDesktop && !store.onboarding.isActive + const showBottomBar = isMobile && !store.onboarding.isActive const showSideNavs = - isDesktop && store.session.hasSession && !store.onboarding.isActive + !isMobile && store.session.hasSession && !store.onboarding.isActive return ( - <> + <View style={[s.hContentRegion, {overflow: 'hidden'}]}> <View style={s.hContentRegion}> <ErrorBoundary> <FlatNavigator /> @@ -67,7 +67,7 @@ const ShellInner = observer(() => { </View> </TouchableOpacity> )} - </> + </View> ) }) |