From e9e2e5026c1af5f80b16e1494dbb1634bdba8fd6 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sun, 14 Dec 2025 03:57:32 +0000 Subject: [PATCH] ui(macos): fix security notice wrapping --- apps/macos/Sources/Clawdis/Onboarding.swift | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/apps/macos/Sources/Clawdis/Onboarding.swift b/apps/macos/Sources/Clawdis/Onboarding.swift index 5adfff441..f81e1307c 100644 --- a/apps/macos/Sources/Clawdis/Onboarding.swift +++ b/apps/macos/Sources/Clawdis/Onboarding.swift @@ -189,15 +189,10 @@ struct OnboardingView: View { Text("Security notice") .font(.headline) Text( - """ - The connected AI agent (e.g. Claude) can trigger powerful actions on your Mac, - including running - commands, reading/writing files, and capturing screenshots — depending on the - permissions you grant. - - Only enable Clawdis if you understand the risks and trust the prompts - and integrations you use. - """) + "The connected AI agent (e.g. Claude) can trigger powerful actions on your Mac, " + + "including running commands, reading/writing files, and capturing screenshots — " + + "depending on the permissions you grant.\n\n" + + "Only enable Clawdis if you understand the risks and trust the prompts and integrations you use.") .font(.subheadline) .foregroundStyle(.secondary) .fixedSize(horizontal: false, vertical: true)