fix: infinite scroll
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/tag Build is failing

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

View File

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