fix(ui): avoid offscreen mounts during initial layout

This commit is contained in:
Shantur Rathore
2026-03-03 10:52:59 +00:00
parent 044e46cd6b
commit 95df743339
2 changed files with 10 additions and 19 deletions

View File

@@ -761,7 +761,7 @@ export default function VirtualFollowList<T>(props: VirtualFollowListProps<T>) {
}
}}
>
{props.renderItem(item(), index)}
{() => props.renderItem(item(), index)}
</VirtualItem>
)
}}