Skip to content

Commit

Permalink
fix: return correct page number from external api response (#483)
Browse files Browse the repository at this point in the history
  • Loading branch information
goemen authored May 13, 2024
1 parent e1122f7 commit 6813ece
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/v1/services/external-consumer-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ left join
});

return {
page: offset,
page: offset / limit,
pageSize: limit,
records: reports,
};
Expand Down

0 comments on commit 6813ece

Please sign in to comment.