You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have an array let arr = $state(['a', 'b', 'c']). When I arr.splice(1, 1), $inspect(arr) first shows me ['a', 'c', 'c'] before showing the correct version, which is ['a', 'c'].
This was raised in #13494 before and was fixed, but it apparently has made a comeback.