fix/pl-rendering (#9484)

This commit is contained in:
Tom Moor
2025-06-23 18:01:41 -04:00
committed by GitHub
parent ca5c51a712
commit 083e5bb7c4
+4 -1
View File
@@ -308,7 +308,10 @@ const PaginatedList = <T extends PaginatedItem>({
</ArrowKeyNavigation>
{allowLoadMore && (
<div style={{ height: "1px" }}>
<Waypoint key={renderCount} onEnter={loadMoreResults} />
<Waypoint
key={items?.length + renderCount}
onEnter={loadMoreResults}
/>
</div>
)}
</React.Fragment>