From dc291fa81125cc2b664ffb089b3f3cb3fdb86be9 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Mon, 8 Dec 2025 00:16:25 +0100 Subject: [PATCH] ui: move Clawdis active toggle to top --- apps/macos/Sources/Clawdis/GeneralSettings.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/macos/Sources/Clawdis/GeneralSettings.swift b/apps/macos/Sources/Clawdis/GeneralSettings.swift index ba1f1e182..015406ff7 100644 --- a/apps/macos/Sources/Clawdis/GeneralSettings.swift +++ b/apps/macos/Sources/Clawdis/GeneralSettings.swift @@ -14,8 +14,6 @@ struct GeneralSettings: View { var body: some View { ScrollView(.vertical) { VStack(alignment: .leading, spacing: 18) { - self.connectionSection - if !self.state.onboardingSeen { Text("Complete onboarding to finish setup") .font(.callout.weight(.semibold)) @@ -29,6 +27,8 @@ var body: some View { subtitle: "Pause to stop Clawdis background helpers and notifications.", binding: self.activeBinding) + self.connectionSection + SettingsToggleRow( title: "Launch at login", subtitle: "Automatically start Clawdis after you sign in.",