diff --git a/field_input.go b/field_input.go index 3510d52..8cf137e 100644 --- a/field_input.go +++ b/field_input.go @@ -342,11 +342,6 @@ func (i *Input) Update(msg tea.Msg) (tea.Model, tea.Cmd) { switch { case key.Matches(msg, i.keymap.Prev): - value := i.textinput.Value() - i.err = i.validate(value) - if i.err != nil { - return i, nil - } cmds = append(cmds, PrevField) case key.Matches(msg, i.keymap.Next, i.keymap.Submit): value := i.textinput.Value()