summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--packages/tui/internal/components/chat/editor.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/tui/internal/components/chat/editor.go b/packages/tui/internal/components/chat/editor.go
index 294e05b4f..c05754cae 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) {