🐛 Fix infinite scroll for shared with me (#641)

This commit is contained in:
Montassar Ghanmy
2024-09-05 14:30:27 +01:00
committed by GitHub
parent 492b636e93
commit f14ec8bd2d
10 changed files with 253 additions and 70 deletions
@@ -76,7 +76,10 @@ export class DriveApiClient {
{
filter,
sort,
paginate
paginate: {
page_token: paginate.page.toString(),
limitStr: paginate.limit.toString(),
}
},
);
}
@@ -1,7 +1,10 @@
export type BrowseQuery = {
filter: BrowseFilter;
sort: BrowseSort;
paginate: BrowsePaginate;
paginate: {
page_token: string;
limitStr: string;
};
}
export type BrowseFilter = {