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',