From 7e2b20f4bc67110fb4a01351a0b34564320c8b6e Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Fri, 20 Jun 2025 19:09:33 +0200 Subject: [PATCH] kill remaining rust stuff --- .../Presentation/Views/Settings/DashboardSettingsView.swift | 2 +- .../Presentation/Views/Settings/DebugSettingsView.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 {