fix: infinite scroll
continuous-integration/drone/push Build is failing Details
continuous-integration/drone/tag Build is failing Details

This commit is contained in:
Kieran 2024-01-26 17:22:02 +00:00
parent 404a07f45a
commit b07f9abe16
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941
1 changed files with 2 additions and 2 deletions

View File

@ -99,10 +99,10 @@ const TimelineFollows = (props: TimelineFollowsProps) => {
}}
displayAs={displayAs}
/>
{(feed.main?.length ?? 0) > 0 && (
{mainFeed.length > 0 && (
<ShowMoreInView
onClick={() => {
onShowLatest(false);
feed.loadMore();
}}
/>
)}