🐛 Fix infinite scroll for shared with me (#641)
This commit is contained in:
@@ -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 = {
|
||||
|
||||
Reference in New Issue
Block a user