From 4327ac934902d193246524ca9d2049f9afc5d8b5 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Fri, 20 Jun 2025 04:14:46 +0200 Subject: [PATCH] settings tweaks --- .../Presentation/Views/Settings/AdvancedSettingsView.swift | 5 +---- .../Presentation/Views/Settings/DebugSettingsView.swift | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/VibeTunnel/Presentation/Views/Settings/AdvancedSettingsView.swift b/VibeTunnel/Presentation/Views/Settings/AdvancedSettingsView.swift index 19b82eb7..44410561 100644 --- a/VibeTunnel/Presentation/Views/Settings/AdvancedSettingsView.swift +++ b/VibeTunnel/Presentation/Views/Settings/AdvancedSettingsView.swift @@ -77,10 +77,7 @@ struct AdvancedSettingsView: View { } } - if cliInstaller.isInstalling { - TextShimmer(text: "Installing CLI Tool...", font: .caption) - .frame(maxWidth: .infinity, alignment: .leading) - } else if let error = cliInstaller.lastError { + if let error = cliInstaller.lastError { Text(error) .font(.caption) .foregroundColor(.red) diff --git a/VibeTunnel/Presentation/Views/Settings/DebugSettingsView.swift b/VibeTunnel/Presentation/Views/Settings/DebugSettingsView.swift index b8986eba..052ef6b0 100644 --- a/VibeTunnel/Presentation/Views/Settings/DebugSettingsView.swift +++ b/VibeTunnel/Presentation/Views/Settings/DebugSettingsView.swift @@ -340,7 +340,7 @@ private struct ServerSection: View { HStack { VStack(alignment: .leading, spacing: 2) { Text("Server Mode") - Text("Play with this if you're feeling dangerous. Multiple servers cause reasons™.") + Text("Multiple server implementations cause reasons™.") .font(.caption) .foregroundStyle(.secondary) }