diff --git a/textinput/textinput.go b/textinput/textinput.go index ec35588..66cec33 100644 --- a/textinput/textinput.go +++ b/textinput/textinput.go @@ -361,7 +361,7 @@ func View(model tea.Model) string { } // Placeholder text - if m.value == nil && m.Placeholder != "" { + if len(m.value) == 0 && m.Placeholder != "" { return placeholderView(m) }