ui: fold remote mode label into picker

main
Peter Steinberger 2025-12-07 23:21:00 +01:00
parent d7281286ba
commit 091471293d
1 changed files with 1 additions and 4 deletions

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