From 3eb2a938d3a1acedcd256e2493fa47df5db12cd8 Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Tue, 3 Jun 2025 15:31:16 -0400 Subject: [PATCH] fix(lint): remove extraneous newline --- internal/tui/components/core/list/list.go | 1 - 1 file changed, 1 deletion(-) diff --git a/internal/tui/components/core/list/list.go b/internal/tui/components/core/list/list.go index 6c7d34777f7622d1f474b5dfe7e4fc3553a1420e..247672e53d76e931e04dd74c3f7d4690f7162cd9 100644 --- a/internal/tui/components/core/list/list.go +++ b/internal/tui/components/core/list/list.go @@ -345,7 +345,6 @@ func (m *model) handleKeyPress(msg tea.KeyPressMsg) (tea.Model, tea.Cmd) { } m.currentSearch = m.input.Value() return m, tea.Batch(cmds...) - } return m, nil }