diff --git a/internal/prompter/prompter.go b/internal/prompter/prompter.go index 6cdbc9a87..7dd45bf5c 100644 --- a/internal/prompter/prompter.go +++ b/internal/prompter/prompter.go @@ -136,10 +136,6 @@ func (p *accessiblePrompter) Input(prompt, defaultValue string) (string, error) ) err := form.Run() - - if result == "" { - return defaultValue, nil - } return result, err }