From bd0e6a6efdb6bb6d7cbfc76f3c0b619a381e9eb8 Mon Sep 17 00:00:00 2001 From: Charles Dusek Date: Wed, 4 Mar 2026 09:37:55 -0600 Subject: [PATCH] macos: clarify remote token placeholder text --- apps/macos/Sources/OpenClaw/GeneralSettings.swift | 2 +- apps/macos/Sources/OpenClaw/OnboardingView+Pages.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/macos/Sources/OpenClaw/GeneralSettings.swift b/apps/macos/Sources/OpenClaw/GeneralSettings.swift index 1997b5ba58a..5c2cae2659d 100644 --- a/apps/macos/Sources/OpenClaw/GeneralSettings.swift +++ b/apps/macos/Sources/OpenClaw/GeneralSettings.swift @@ -298,7 +298,7 @@ struct GeneralSettings: View { Text("Gateway token") .font(.callout.weight(.semibold)) .frame(width: self.remoteLabelWidth, alignment: .leading) - SecureField("token from gateway.auth.token", text: self.$state.remoteToken) + SecureField("remote gateway auth token (gateway.auth.token)", text: self.$state.remoteToken) .textFieldStyle(.roundedBorder) .frame(maxWidth: .infinity) } diff --git a/apps/macos/Sources/OpenClaw/OnboardingView+Pages.swift b/apps/macos/Sources/OpenClaw/OnboardingView+Pages.swift index 2a9224699b7..578d3a6ff05 100644 --- a/apps/macos/Sources/OpenClaw/OnboardingView+Pages.swift +++ b/apps/macos/Sources/OpenClaw/OnboardingView+Pages.swift @@ -203,7 +203,7 @@ extension OnboardingView { Text("Gateway token") .font(.callout.weight(.semibold)) .frame(width: labelWidth, alignment: .leading) - SecureField("token from gateway.auth.token", text: self.$state.remoteToken) + SecureField("remote gateway auth token (gateway.auth.token)", text: self.$state.remoteToken) .textFieldStyle(.roundedBorder) .frame(width: fieldWidth) }