diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/view/shell/desktop/LeftNav.tsx | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/src/view/shell/desktop/LeftNav.tsx b/src/view/shell/desktop/LeftNav.tsx index 47daed6ce..85086c21a 100644 --- a/src/view/shell/desktop/LeftNav.tsx +++ b/src/view/shell/desktop/LeftNav.tsx @@ -328,24 +328,6 @@ 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={4} - style={pal.text as FontAwesomeIconStyle} - size={isDesktop ? 24 : 28} - /> - } - label={_(msg`Feeds`)} - /> - <NavItem href="/notifications" count={numUnread} icon={ @@ -365,6 +347,24 @@ export function DesktopLeftNav() { label={_(msg`Notifications`)} /> <NavItem + href="/feeds" + icon={ + <HashtagIcon + strokeWidth={2.25} + style={pal.text as FontAwesomeIconStyle} + size={isDesktop ? 24 : 28} + /> + } + iconFilled={ + <HashtagIcon + strokeWidth={4} + style={pal.text as FontAwesomeIconStyle} + size={isDesktop ? 24 : 28} + /> + } + label={_(msg`Feeds`)} + /> + <NavItem href="/lists" icon={ <ListIcon |