fix(tui): restore spinner ticks
Some checks are pending
deploy / deploy (push) Waiting to run
publish / publish (push) Waiting to run

This commit is contained in:
adamdotdevin 2025-07-21 05:58:24 -05:00
parent 8e8796507d
commit cd0b2ae032
No known key found for this signature in database
GPG key ID: 9CB48779AF150E75

View file

@ -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) {