fix: needs update even if not spinning

Carlos Alexandro Becker created

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>

Change summary

internal/tui/exp/list/list.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

internal/tui/exp/list/list.go 🔗

@@ -288,7 +288,7 @@ func (l *list[T]) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
 		var cmds []tea.Cmd
 
 		for inx, item := range slices.Collect(l.items.Seq()) {
-			if i, ok := any(item).(HasAnim); ok && i.Spinning() {
+			if i, ok := any(item).(HasAnim); ok {
 				// Check if item is visible
 				isVisible := false
 				if inx < len(l.itemPositions) {