Fix broken pagination for lists tab on profile page (#6221)
* set onEndReachedThreshold to 2 for ProfileLists * Add a footer for ProfileLists component for consistency * Remove logs * Revert onEndReachedThreshold change on Feed component * Fix threshold defaults to match native * Align lists and feedgens --------- Co-authored-by: Dan Abramov <dan.abramov@gmail.com>
This commit is contained in:
@@ -46,9 +46,9 @@ function ListImpl<ItemT>(
|
||||
keyExtractor,
|
||||
refreshing: _unsupportedRefreshing,
|
||||
onStartReached,
|
||||
onStartReachedThreshold = 0,
|
||||
onStartReachedThreshold = 2,
|
||||
onEndReached,
|
||||
onEndReachedThreshold = 0,
|
||||
onEndReachedThreshold = 2,
|
||||
onRefresh: _unsupportedOnRefresh,
|
||||
onScrolledDownChange,
|
||||
onContentSizeChange,
|
||||
|
||||
Reference in New Issue
Block a user