Updated scrollable list offset to 1500 for inifinite load

• Updated:
- scrollable list offset to 1500 for inifinite load from 600 offset
This commit is contained in:
mgabdev 2020-05-22 00:05:40 -04:00
parent 08a09ccc4f
commit dce7eb575b

View File

@ -133,7 +133,7 @@ export default class ScrollableList extends PureComponent {
// reload
}
if (600 > offset && this.props.onLoadMore && this.props.hasMore && !this.props.isLoading) {
if (1500 > offset && this.props.onLoadMore && this.props.hasMore && !this.props.isLoading) {
this.props.onLoadMore();
}