diff options
| author | adamdottv <[email protected]> | 2025-05-13 06:55:18 -0500 |
|---|---|---|
| committer | adamdottv <[email protected]> | 2025-05-13 06:55:18 -0500 |
| commit | 7f0e68b9335bb27684049dcf31b6f5892e0d00f3 (patch) | |
| tree | a3c180b73541207da1a82a920753e3f357314cdc | |
| parent | 0c21ca531856c2f73da0b27ce215dab8385a9ef5 (diff) | |
| download | opencode-7f0e68b9335bb27684049dcf31b6f5892e0d00f3.tar.gz opencode-7f0e68b9335bb27684049dcf31b6f5892e0d00f3.zip | |
chore: cleanup
| -rw-r--r-- | internal/tui/components/chat/list.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/tui/components/chat/list.go b/internal/tui/components/chat/list.go index bf72e74b5..ae5615785 100644 --- a/internal/tui/components/chat/list.go +++ b/internal/tui/components/chat/list.go @@ -472,8 +472,8 @@ func (m *messagesCmp) BindingKeys() []key.Binding { func NewMessagesCmp(app *app.App) tea.Model { customSpinner := spinner.Spinner{ - Frames: []string{" ", "┃"}, - FPS: time.Second / 2, //nolint:gomnd + Frames: []string{" ", "┃", "┃"}, + FPS: time.Second / 3, } s := spinner.New(spinner.WithSpinner(customSpinner)) vp := viewport.New(0, 0) |
