Skip to content

Commit ec49920

Browse files
committed
Merge branch 'infinite-scroll-fix' of https://github.com/UW-Macrostrat/web-components into infinite-scroll-fix
2 parents 8484c0e + 2036119 commit ec49920

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/ui-components/src/infinite-scroll.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,8 @@ function InfiniteScrollView<T>(props: InfiniteScrollProps<T>) {
160160
delay,
161161
} = props;
162162
const { get } = useAPIActions();
163-
const {
164-
getCount = () => null,
163+
const {
164+
getCount = () => null,
165165
getNextParams = (response, params) => {
166166
const lastPage = params.page ?? 0;
167167
return { ...params, page: lastPage + 1 };

0 commit comments

Comments
 (0)