diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-08-30 15:15:10 -0700 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-08-30 15:15:10 -0700 |
commit | 8ed6e72ea4a5b6546ecbbee6aa4233ee6b3aed21 (patch) | |
tree | aa944955dbd07fdb10fed60c6e9ef20741c86869 /src/view/shell/index.web.tsx | |
parent | 05d1d8d8a4565e7d042f8c09760186b4037dcd2f (diff) | |
download | voidsky-8ed6e72ea4a5b6546ecbbee6aa4233ee6b3aed21.tar.zst |
More fixes to mobile onboard
Diffstat (limited to 'src/view/shell/index.web.tsx')
-rw-r--r-- | src/view/shell/index.web.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/view/shell/index.web.tsx b/src/view/shell/index.web.tsx index 9ad8007f6..e36439c82 100644 --- a/src/view/shell/index.web.tsx +++ b/src/view/shell/index.web.tsx @@ -28,6 +28,7 @@ const ShellInner = observer(() => { }) }, [navigator, store.shell]) + const showBottomBar = !isDesktop && !store.onboarding.isActive const showSideNavs = isDesktop && store.session.hasSession && !store.onboarding.isActive return ( @@ -52,7 +53,7 @@ const ShellInner = observer(() => { onPost={store.shell.composerOpts?.onPost} mention={store.shell.composerOpts?.mention} /> - {!isDesktop && <BottomBarWeb />} + {showBottomBar && <BottomBarWeb />} <ModalsContainer /> <Lightbox /> {!isDesktop && store.shell.isDrawerOpen && ( |