removed outdated comment

This commit is contained in:
shilangyu 2020-09-18 23:31:54 +02:00
parent ea923b032c
commit 34f8f5b155
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ class InfiniteScroll<T> extends HookWidget {
if (newData.length < batchSize) {
hasMore.current = false;
}
// append new data and increment page count
// append new data
data.value = [...data.value, ...newData];
}).whenComplete(() => isFetching.current = false);
}