diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-08-29 22:56:13 -0700 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-08-29 22:56:13 -0700 |
commit | 5e765bf1cb29d30d627552da84d02594f506af1f (patch) | |
tree | 4620266dbd31e9ec525e173bb07652ff0b804ba7 /src/view/shell/index.web.tsx | |
parent | 5d9534ca7258e6165e537b89d999a8c494501dc0 (diff) | |
download | voidsky-5e765bf1cb29d30d627552da84d02594f506af1f.tar.zst |
Rework web onboarding
Diffstat (limited to 'src/view/shell/index.web.tsx')
-rw-r--r-- | src/view/shell/index.web.tsx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/view/shell/index.web.tsx b/src/view/shell/index.web.tsx index 16ed17a5b..9ad8007f6 100644 --- a/src/view/shell/index.web.tsx +++ b/src/view/shell/index.web.tsx @@ -20,7 +20,6 @@ import {NavigationProp} from 'lib/routes/types' const ShellInner = observer(() => { const store = useStores() const {isDesktop} = useWebMediaQueries() - const navigator = useNavigation<NavigationProp>() useEffect(() => { @@ -29,6 +28,8 @@ const ShellInner = observer(() => { }) }, [navigator, store.shell]) + const showSideNavs = + isDesktop && store.session.hasSession && !store.onboarding.isActive return ( <> <View style={s.hContentRegion}> @@ -36,7 +37,7 @@ const ShellInner = observer(() => { <FlatNavigator /> </ErrorBoundary> </View> - {isDesktop && store.session.hasSession && ( + {showSideNavs && ( <> <DesktopLeftNav /> <DesktopRightNav /> |