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
fix: always return result array from useStableRows instead of stale fallback
The fallback path returned Array.from(prev.values()) which iterated the
old map's insertion order rather than the current rows order. It also
always created a new array, defeating the intended reference-reuse
optimization. Returning result unconditionally is both correct and
simpler.
0 commit comments