diff --git a/internal/tui/tui.go b/internal/tui/tui.go index 9881e58d0c71c23208980d721d796905cc493076..ae2e80e056843bec8fb24295590f65be775ca469 100644 --- a/internal/tui/tui.go +++ b/internal/tui/tui.go @@ -3,7 +3,6 @@ package tui import ( "context" "fmt" - "log/slog" "math/rand" "regexp" "slices" @@ -113,7 +112,6 @@ func (a appModel) Init() tea.Cmd { // Update handles incoming messages and updates the application state. func (a *appModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) { - slog.Info("app update", "msg", fmt.Sprintf("%T", msg)) var cmds []tea.Cmd var cmd tea.Cmd a.isConfigured = config.HasInitialDataConfig()