From 796f96367761f1b149783c5891be97d92c07db41 Mon Sep 17 00:00:00 2001 From: vvaswani <2571660+vvaswani@users.noreply.github.com> Date: Mon, 17 Nov 2025 02:55:49 +0530 Subject: [PATCH] Fix typo in CLI Signed-off-by: vvaswani <2571660+vvaswani@users.noreply.github.com> --- app/cli/cmd/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/cli/cmd/root.go b/app/cli/cmd/root.go index 9784848b8..3fe694bec 100644 --- a/app/cli/cmd/root.go +++ b/app/cli/cmd/root.go @@ -144,7 +144,7 @@ func NewRootCmd(l zerolog.Logger) *cobra.Command { // Warn users when the session is interactive, and the operation is supposed to use an API token instead if shouldAskForConfirmation(cmd) && isUserToken && !flagYes { - if !confirmationPrompt(fmt.Sprintf("This command is will run against the organization %q", orgName)) { + if !confirmationPrompt(fmt.Sprintf("This command will run against the organization %q", orgName)) { return errors.New("command canceled by user") } }