The file /Users/neog/Apps/macOS/NEOGHub/NEOGCommand/App/AppState.swift has been updated. Here's the result of running `cat -n` on a snippet of the edited file: 329→ // Continue to fallback 330→ } 331→ } 332→ 333→ // Try /api/health as another fallback (for system monitor) 334→ if let url = URL(string: "http://localhost:\(port)/api/health") { 335→ do { 336→ let (_, response) = try await URLSession.shared.data(from: url) 337→ if let httpResponse = response as? HTTPURLResponse, 338→ httpResponse.statusCode == 200 { 339→ return true 340→ } 341→ } catch { 342→ // Continue 343→ } 344→ } 345→ 346→ // Try /api/cc/health (for log server) 347→ if let url = URL(string: "http://localhost:\(port)/api/cc/health") { 348→ do { 349→ let (_, response) = try await URLSession.shared.data(from: url) 350→ if let httpResponse = response as? HTTPURLResponse, 351→ httpResponse.statusCode == 200 { 352→ return true 353→ } 354→ } catch { 355→ // Failed 356→ } 357→ } 358→ 359→ return false 360→ } 361→ 362→ // MARK: - Manual Refresh 363→ 364→ func forceRefresh() async {