From 80d3744c5d46007ce3107657b728a81f83226fab Mon Sep 17 00:00:00 2001 From: Parth Sareen Date: Thu, 9 Apr 2026 15:20:30 -0700 Subject: [PATCH] launch: update openclaw channel message (#15463) --- cmd/launch/openclaw.go | 2 +- cmd/launch/openclaw_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/launch/openclaw.go b/cmd/launch/openclaw.go index c39603662..f1279e054 100644 --- a/cmd/launch/openclaw.go +++ b/cmd/launch/openclaw.go @@ -193,7 +193,7 @@ func (c *Openclaw) runChannelSetupPreflight(bin string) error { } fmt.Fprintf(os.Stderr, "\nYour assistant can message you on WhatsApp, Telegram, Discord, and more.\n\n") - ok, err := ConfirmPromptWithOptions("Connect a messaging app now?", ConfirmOptions{ + ok, err := ConfirmPromptWithOptions("Connect a channel (messaging app) now?", ConfirmOptions{ YesLabel: "Yes", NoLabel: "Set up later", }) diff --git a/cmd/launch/openclaw_test.go b/cmd/launch/openclaw_test.go index 80addab61..88593cdbc 100644 --- a/cmd/launch/openclaw_test.go +++ b/cmd/launch/openclaw_test.go @@ -143,7 +143,7 @@ fi oldConfirmPrompt := DefaultConfirmPrompt DefaultConfirmPrompt = func(prompt string, options ConfirmOptions) (bool, error) { promptCount++ - if prompt != "Connect a messaging app now?" { + if prompt != "Connect a channel (messaging app) now?" { t.Fatalf("unexpected prompt: %q", prompt) } return true, nil