Skip to content

Commit

Permalink
fix(transaction): clear pagination on find predicate by address
Browse files Browse the repository at this point in the history
  • Loading branch information
luisburigo committed Nov 14, 2023
1 parent 9b40008 commit 8cae10a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/modules/predicate/controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,10 @@ export class PredicateController {
.filter({
address,
})
.paginate({
page: '',
perPage: '',
})
.list()
.then((data: Predicate[]) => data);
return successful(response[0], Responses.Ok);
Expand Down

0 comments on commit 8cae10a

Please sign in to comment.