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