infinite scroll

This commit is contained in:
Drew Ansbacher
2021-07-13 16:01:01 -06:00
committed by Aiden McClelland
parent 9dec1f18c2
commit c2313b4eb3
3 changed files with 6 additions and 2 deletions

View File

@@ -506,7 +506,7 @@ export class MockApiService extends ApiService {
}
const url = `${registryURL}/marketplace/available/list?${params.category ? `category=${params.category}` : ''}&per-page=${params['per-page'] || '20'}&page=${params.page || '1'}&query=${params.query || ''}`
let av = await this.http.simpleGet(url)
return (av as any)
return (av as any).services
}
async getAvailableShow (params: RR.GetAvailableShowReq): Promise<RR.GetAvailableShowRes> {