From a911bfb716e61503fbd99235484134b7ea67e602 Mon Sep 17 00:00:00 2001 From: Vincent Koc Date: Fri, 24 Jul 2026 06:48:35 +0200 Subject: [PATCH] style(ios): satisfy settings chat formatting --- apps/ios/Sources/Design/SettingsSystemAgentChat.swift | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/apps/ios/Sources/Design/SettingsSystemAgentChat.swift b/apps/ios/Sources/Design/SettingsSystemAgentChat.swift index 065b88f5a841..61123860fa61 100644 --- a/apps/ios/Sources/Design/SettingsSystemAgentChat.swift +++ b/apps/ios/Sources/Design/SettingsSystemAgentChat.swift @@ -153,11 +153,12 @@ final class IOSSystemAgentChatModel { nonisolated static func screenshotFixtureReply(params: [String: AnyCodable]) throws -> Data { let hasMessage = params["message"]?.value is String + let reply = hasMessage + ? String(localized: "I’ll keep this conversation separate from ordinary agent chat.") + : String(localized: "I can check Gateway status, repair configuration, change models, or connect channels.") var result: [String: Any] = [ "sessionId": "ios-screenshot-openclaw", - "reply": hasMessage - ? String(localized: "I’ll keep this conversation separate from ordinary agent chat.") - : String(localized: "I can check Gateway status, repair configuration, change models, or connect channels."), + "reply": reply, "action": "none", ] if !hasMessage {