From cd0b2ae0323aa36d3e15b94d8ec9ca0bb81b5597 Mon Sep 17 00:00:00 2001 From: adamdotdevin <2363879+adamdottv@users.noreply.github.com> Date: Mon, 21 Jul 2025 05:58:24 -0500 Subject: [PATCH] fix(tui): restore spinner ticks --- packages/tui/internal/components/chat/editor.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/tui/internal/components/chat/editor.go b/packages/tui/internal/components/chat/editor.go index 294e05b4..c05754ca 100644 --- a/packages/tui/internal/components/chat/editor.go +++ b/packages/tui/internal/components/chat/editor.go @@ -59,8 +59,7 @@ type editorComponent struct { } func (m *editorComponent) Init() tea.Cmd { - return tea.Batch(m.textarea.Focus(), tea.EnableReportFocus) - // return tea.Batch(m.textarea.Focus(), m.spinner.Tick, tea.EnableReportFocus) + return tea.Batch(m.textarea.Focus(), m.spinner.Tick, tea.EnableReportFocus) } func (m *editorComponent) Update(msg tea.Msg) (tea.Model, tea.Cmd) {