diff --git a/internal/prompter/prompter.go b/internal/prompter/prompter.go index c9af35fbf..3e37834db 100644 --- a/internal/prompter/prompter.go +++ b/internal/prompter/prompter.go @@ -253,11 +253,6 @@ func (p *huhPrompter) MarkdownEditor(prompt, defaultValue string, blankAllowed b return "", err } - // TODO: blank not allowed - if !blankAllowed && defaultValue == "" { - panic("blank not allowed and no default value") - } - return text, nil }