diff options
author | Hailey <me@haileyok.com> | 2024-05-27 16:43:07 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-28 00:43:07 +0100 |
commit | af10d3acbb23eb99ea58a6481b257251bf426fe5 (patch) | |
tree | fd228b43fd116eb16493e097674cbabf485a2ee7 /src | |
parent | e6d26186a9e529069b392dbe909dd059295c615b (diff) | |
download | voidsky-af10d3acbb23eb99ea58a6481b257251bf426fe5.tar.zst |
set `onEndReachedThreshold` to `2` for notifications (#4235)
Diffstat (limited to 'src')
-rw-r--r-- | src/view/com/notifications/Feed.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/notifications/Feed.tsx b/src/view/com/notifications/Feed.tsx index 7d34596d9..15c103bed 100644 --- a/src/view/com/notifications/Feed.tsx +++ b/src/view/com/notifications/Feed.tsx @@ -165,7 +165,7 @@ export function Feed({ refreshing={isPTRing} onRefresh={onRefresh} onEndReached={onEndReached} - onEndReachedThreshold={0.6} + onEndReachedThreshold={2} onScrolledDownChange={onScrolledDownChange} contentContainerStyle={s.contentContainer} // @ts-ignore our .web version only -prf |