diff --git a/internal/cli/apps.go b/internal/cli/apps.go index fcdd0899b..e7f5ef9e6 100644 --- a/internal/cli/apps.go +++ b/internal/cli/apps.go @@ -84,7 +84,7 @@ auth0 apps show RunE: func(cmd *cobra.Command, args []string) error { if len(args) == 0 { if canPrompt(cmd) { - input := prompt.TextInput(appID, "Id:", "Id of the application.", true) + input := prompt.TextInput(appID, "Client Id:", "Id of the application.", true) if err := prompt.AskOne(input, &inputs); err != nil { return fmt.Errorf("An unexpected error occurred: %w", err) @@ -136,7 +136,7 @@ auth0 apps delete RunE: func(cmd *cobra.Command, args []string) error { if len(args) == 0 { if canPrompt(cmd) { - input := prompt.TextInput(appID, "Id:", "Id of the application.", true) + input := prompt.TextInput(appID, "Client Id:", "Id of the application.", true) if err := prompt.AskOne(input, &inputs); err != nil { return fmt.Errorf("An unexpected error occurred: %w", err) @@ -304,7 +304,7 @@ auth0 apps update --name myapp --type [native|spa|regular|m2m] RunE: func(cmd *cobra.Command, args []string) error { if len(args) == 0 { if canPrompt(cmd) { - input := prompt.TextInput(appID, "Id:", "Id of the application.", true) + input := prompt.TextInput(appID, "Client Id:", "Id of the application.", true) if err := prompt.AskOne(input, &inputs); err != nil { return fmt.Errorf("An unexpected error occurred: %w", err)