diff options
Diffstat (limited to 'src/view/shell/desktop')
-rw-r--r-- | src/view/shell/desktop/LeftNav.tsx | 22 | ||||
-rw-r--r-- | src/view/shell/desktop/RightNav.tsx | 4 |
2 files changed, 15 insertions, 11 deletions
diff --git a/src/view/shell/desktop/LeftNav.tsx b/src/view/shell/desktop/LeftNav.tsx index 46c77178b..65757b072 100644 --- a/src/view/shell/desktop/LeftNav.tsx +++ b/src/view/shell/desktop/LeftNav.tsx @@ -131,7 +131,7 @@ export const DesktopLeftNav = observer(function DesktopLeftNav() { return ( <View style={styles.leftNav}> - <ProfileCard /> + {store.session.hasSession && <ProfileCard />} <BackBtn /> <NavItem href="/" @@ -164,14 +164,16 @@ export const DesktopLeftNav = observer(function DesktopLeftNav() { } label="Notifications" /> - <NavItem - href={`/profile/${store.me.handle}`} - icon={<UserIcon strokeWidth={1.75} size={28} style={pal.text} />} - iconFilled={ - <UserIconSolid strokeWidth={1.75} size={28} style={pal.text} /> - } - label="Profile" - /> + {store.session.hasSession && ( + <NavItem + href={`/profile/${store.me.handle}`} + icon={<UserIcon strokeWidth={1.75} size={28} style={pal.text} />} + iconFilled={ + <UserIconSolid strokeWidth={1.75} size={28} style={pal.text} /> + } + label="Profile" + /> + )} <NavItem href="/settings" icon={<CogIcon strokeWidth={1.75} size={28} style={pal.text} />} @@ -180,7 +182,7 @@ export const DesktopLeftNav = observer(function DesktopLeftNav() { } label="Settings" /> - <ComposeBtn /> + {store.session.hasSession && <ComposeBtn />} </View> ) }) diff --git a/src/view/shell/desktop/RightNav.tsx b/src/view/shell/desktop/RightNav.tsx index 58fb31392..3f196cb70 100644 --- a/src/view/shell/desktop/RightNav.tsx +++ b/src/view/shell/desktop/RightNav.tsx @@ -7,12 +7,14 @@ import {Text} from 'view/com/util/text/Text' import {TextLink} from 'view/com/util/Link' import {FEEDBACK_FORM_URL} from 'lib/constants' import {s} from 'lib/styles' +import {useStores} from 'state/index' export const DesktopRightNav = observer(function DesktopRightNav() { + const store = useStores() const pal = usePalette('default') return ( <View style={[styles.rightNav, pal.view]}> - <DesktopSearch /> + {store.session.hasSession && <DesktopSearch />} <View style={styles.message}> <Text type="md" style={[pal.textLight, styles.messageLine]}> Welcome to Bluesky! This is a beta application that's still in |