fix: infinite scroll
Some checks failed
Release / tauri_release (macos-latest) (push) Has been cancelled
Release / tauri_release (ubuntu-20.04) (push) Has been cancelled
Release / tauri_release (windows-latest) (push) Has been cancelled
Release / app (push) Has been cancelled

This commit is contained in:
Kieran 2024-01-26 17:22:02 +00:00
parent 404a07f45a
commit b07f9abe16
No known key found for this signature in database
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();
}} }}
/> />
)} )}