Skip to content

Commit

Permalink
Fix: Add limit:1000 to saved searches to show all savedsearches for now
Browse files Browse the repository at this point in the history
  • Loading branch information
Ifycode committed Sep 11, 2024
1 parent 556b903 commit 634f84a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/sdk/src/lib/services/savedsearches.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export class SavedsearchesService extends ResourceService<any> {
}

override get(): Observable<SavedsearchesResponse> {
return super.get();
return super.get('', { limit: 1000 }); // Temporary measure: Add limit of 1000 for now to show/get all savedsercahes
}

override getById(id: string | number): Observable<{ result: Savedsearch }> {
Expand Down

0 comments on commit 634f84a

Please sign in to comment.