The file /Users/neog/Apps/macOS/NEOGHub/NEOGCommand/Core/Navigation/SidebarView.swift has been updated. Here's the result of running `cat -n` on a snippet of the edited file: 1→import SwiftUI 2→ 3→struct SidebarView: View { 4→ @EnvironmentObject var appState: AppState 5→ @StateObject private var tracker = ConsumptionTracker.shared 6→ 7→ var body: some View { 8→ List(selection: $appState.selectedCategory) { 9→ Section("Main") { 10→ ForEach([SidebarCategory.dashboard, .monitoring, .services]) { category in 11→ NavigationLink(value: category) {