diff --git a/choose/choose.go b/choose/choose.go index 04fd097..1f1390f 100644 --- a/choose/choose.go +++ b/choose/choose.go @@ -47,11 +47,6 @@ type item struct { func (m model) Init() tea.Cmd { return nil } -func (m *model) handleSelectKeys(msg tea.KeyMsg) (tea.Model, tea.Cmd) { - - return nil, nil -} - func (m model) Update(msg tea.Msg) (tea.Model, tea.Cmd) { switch msg := msg.(type) { diff --git a/choose/inputmodels.go b/choose/inputmodels.go index 6ba3824..8445310 100644 --- a/choose/inputmodels.go +++ b/choose/inputmodels.go @@ -8,8 +8,8 @@ import ( type inputStyle int64 -// SELECT User is selecting one of the options -// INPUT User enters into input field +// SELECT User is selecting one of the options. +// INPUT User enters into input field. const ( SELECT inputStyle = iota INPUT