settings tweaks

This commit is contained in:
Peter Steinberger 2025-06-20 04:14:46 +02:00
parent a3f55affc6
commit 4327ac9349
2 changed files with 2 additions and 5 deletions

View file

@ -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)

View file

@ -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)
}