From 14559354dd4268bf6071f60de458f57dd38f13df Mon Sep 17 00:00:00 2001 From: webdevcody Date: Fri, 16 Jan 2026 18:49:35 -0500 Subject: [PATCH] refactor: update sidebar navigation sections for clarity - Added Notifications and Project Settings as standalone sections in the sidebar without labels for visual separation. - Removed the previous 'Other' label to enhance the organization of navigation items. --- .../components/layout/sidebar/hooks/use-navigation.ts | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/apps/ui/src/components/layout/sidebar/hooks/use-navigation.ts b/apps/ui/src/components/layout/sidebar/hooks/use-navigation.ts index 8c712299..91b40e4a 100644 --- a/apps/ui/src/components/layout/sidebar/hooks/use-navigation.ts +++ b/apps/ui/src/components/layout/sidebar/hooks/use-navigation.ts @@ -206,9 +206,9 @@ export function useNavigation({ }); } - // Add Other section with notifications + // Add Notifications and Project Settings as a standalone section (no label for visual separation) sections.push({ - label: 'Other', + label: '', items: [ { id: 'notifications', @@ -217,13 +217,6 @@ export function useNavigation({ shortcut: shortcuts.notifications, count: unreadNotificationsCount, }, - ], - }); - - // Add Project Settings as a standalone section (no label for visual separation) - sections.push({ - label: '', - items: [ { id: 'project-settings', label: 'Project Settings',