diff options
Diffstat (limited to 'src/view/shell/desktop/LeftNav.tsx')
-rw-r--r-- | src/view/shell/desktop/LeftNav.tsx | 37 |
1 files changed, 18 insertions, 19 deletions
diff --git a/src/view/shell/desktop/LeftNav.tsx b/src/view/shell/desktop/LeftNav.tsx index e294431f3..8078df802 100644 --- a/src/view/shell/desktop/LeftNav.tsx +++ b/src/view/shell/desktop/LeftNav.tsx @@ -314,28 +314,27 @@ export function DesktopLeftNav() { } label={_(msg`Search`)} /> - <NavItem - href="/feeds" - icon={ - <HashtagIcon - strokeWidth={2.25} - style={pal.text as FontAwesomeIconStyle} - size={isDesktop ? 24 : 28} - /> - } - iconFilled={ - <HashtagIcon - strokeWidth={2.5} - style={pal.text as FontAwesomeIconStyle} - size={isDesktop ? 24 : 28} - /> - } - label={_(msg`Feeds`)} - /> - {hasSession && ( <> <NavItem + href="/feeds" + icon={ + <HashtagIcon + strokeWidth={2.25} + style={pal.text as FontAwesomeIconStyle} + size={isDesktop ? 24 : 28} + /> + } + iconFilled={ + <HashtagIcon + strokeWidth={2.5} + style={pal.text as FontAwesomeIconStyle} + size={isDesktop ? 24 : 28} + /> + } + label={_(msg`Feeds`)} + /> + <NavItem href="/notifications" count={numUnread} icon={ |