personal fork of bluesky app bsky.kelinci.net
0

Configure Feed

Select the types of activity you want to include in your feed.

fix: accept 0-height rows in virtualizer size updates

+1 -1
+1 -1
src/components/List/Virtualizer.tsx
··· 496 496 let updated = false; 497 497 498 498 for (const { key, size } of rows) { 499 - if (size <= 0) { 499 + if (size < 0) { 500 500 continue; 501 501 } 502 502