Browse Source

chore: cleanup

adamdottv 9 months ago
parent
commit
7f0e68b933
1 changed files with 2 additions and 2 deletions
  1. 2 2
      internal/tui/components/chat/list.go

+ 2 - 2
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)