ui: fold remote mode label into picker

This commit is contained in:
Peter Steinberger
2025-12-07 23:21:00 +01:00
parent d7281286ba
commit 091471293d

View File

@@ -95,10 +95,7 @@ var body: some View {
private var connectionSection: some View {
VStack(alignment: .leading, spacing: 8) {
Text("Clawdis runs")
.font(.callout.weight(.semibold))
Picker("Mode", selection: self.$state.connectionMode) {
Picker("Clawdis runs", selection: self.$state.connectionMode) {
Text("Local (this Mac)").tag(AppState.ConnectionMode.local)
Text("Remote over SSH").tag(AppState.ConnectionMode.remote)
}