diff --git a/mac/VibeTunnel/Presentation/Views/Settings/DashboardSettingsView.swift b/mac/VibeTunnel/Presentation/Views/Settings/DashboardSettingsView.swift index 95bbed70..ca01ad5f 100644 --- a/mac/VibeTunnel/Presentation/Views/Settings/DashboardSettingsView.swift +++ b/mac/VibeTunnel/Presentation/Views/Settings/DashboardSettingsView.swift @@ -764,7 +764,7 @@ private struct PortConfigurationView: View { if let conflict = await PortConflictResolver.shared.detectConflict(on: port) { // Only show warning for non-VibeTunnel processes - // tty-fwd and other VibeTunnel instances will be auto-killed by ServerManager + // VibeTunnel instances will be auto-killed by ServerManager if case .reportExternalApp = conflict.suggestedAction { portConflict = conflict alternativePorts = conflict.alternativePorts diff --git a/mac/VibeTunnel/Presentation/Views/Settings/DebugSettingsView.swift b/mac/VibeTunnel/Presentation/Views/Settings/DebugSettingsView.swift index b327598f..a5b4a9b8 100644 --- a/mac/VibeTunnel/Presentation/Views/Settings/DebugSettingsView.swift +++ b/mac/VibeTunnel/Presentation/Views/Settings/DebugSettingsView.swift @@ -335,7 +335,7 @@ private struct ServerSection: View { if let conflict = await PortConflictResolver.shared.detectConflict(on: port) { // Only show warning for non-VibeTunnel processes - // tty-fwd and other VibeTunnel instances will be auto-killed by ServerManager + // VibeTunnel instances will be auto-killed by ServerManager if case .reportExternalApp = conflict.suggestedAction { portConflict = conflict } else {