diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-05-25 20:19:49 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-05-25 20:19:49 -0500 |
commit | 651f3abc1ff0913347ed7bfb824f8e280f87a850 (patch) | |
tree | 736ce166b3b9b3946841177510aca6c31129b50d /src/view/shell/desktop/LeftNav.tsx | |
parent | 216d301191efac72bbf6f6977be74bad2dd0faf6 (diff) | |
download | voidsky-651f3abc1ff0913347ed7bfb824f8e280f87a850.tar.zst |
Tune up custom feed uis on web
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 |