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