From deee2d701a9fb6487e900a1f1e59f7bf823c367e Mon Sep 17 00:00:00 2001 From: Shea Date: Sat, 8 Aug 2026 10:14:42 +0300 Subject: [PATCH] remove less useful menu --- src/app/pages/client/SidebarNav.tsx | 124 +++++++++++++++------------- 1 file changed, 65 insertions(+), 59 deletions(-) diff --git a/src/app/pages/client/SidebarNav.tsx b/src/app/pages/client/SidebarNav.tsx index 46d3a8d9da..f864329fb7 100644 --- a/src/app/pages/client/SidebarNav.tsx +++ b/src/app/pages/client/SidebarNav.tsx @@ -39,65 +39,71 @@ export function SidebarNav() { return ( <> - - - setShowUnreadCounts(!showUnreadCounts)} - after={} - > - - Show Room Counts - - - setBadgeCountDMsOnly(!badgeCountDMsOnly)} - after={} - > - - Show DM Counts - - - setShowPingCounts(!showPingCounts)} - after={} - > - - Show Mention Counts - - - - - - setUniformIcons(!uniformIcons)} - after={} - > - - Consistent Icon Style - - - - - } - /> + {!compact && ( + + + setShowUnreadCounts(!showUnreadCounts)} + after={ + + } + > + + Show Room Counts + + + setBadgeCountDMsOnly(!badgeCountDMsOnly)} + after={ + + } + > + + Show DM Counts + + + setShowPingCounts(!showPingCounts)} + after={} + > + + Show Mention Counts + + + + + + setUniformIcons(!uniformIcons)} + after={} + > + + Consistent Icon Style + + + + + } + /> + )}