diff options
Diffstat (limited to 'src/view/shell/desktop/LeftNav.tsx')
-rw-r--r-- | src/view/shell/desktop/LeftNav.tsx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/view/shell/desktop/LeftNav.tsx b/src/view/shell/desktop/LeftNav.tsx index 3b14d7e99..ce232a730 100644 --- a/src/view/shell/desktop/LeftNav.tsx +++ b/src/view/shell/desktop/LeftNav.tsx @@ -198,15 +198,6 @@ export const DesktopLeftNav = observer(function DesktopLeftNav() { label="Search" /> <NavItem - href="/notifications" - count={store.me.notifications.unreadCountLabel} - icon={<BellIcon strokeWidth={2} size={24} style={pal.text} />} - iconFilled={ - <BellIconSolid strokeWidth={1.5} size={24} style={pal.text} /> - } - label="Notifications" - /> - <NavItem href="/feeds" icon={ <SatelliteDishIcon @@ -225,6 +216,15 @@ export const DesktopLeftNav = observer(function DesktopLeftNav() { label="My Feeds" /> <NavItem + href="/notifications" + count={store.me.notifications.unreadCountLabel} + icon={<BellIcon strokeWidth={2} size={24} style={pal.text} />} + iconFilled={ + <BellIconSolid strokeWidth={1.5} size={24} style={pal.text} /> + } + label="Notifications" + /> + <NavItem href="/moderation" icon={ <HandIcon |