fix limit to 25
This commit is contained in:
@ -47,7 +47,7 @@ const TransactionDisbursement = () => {
|
|||||||
filterValue.trim().length === 0 ? {} : { msisdn: { like: `%${filterValue}%` } };
|
filterValue.trim().length === 0 ? {} : { msisdn: { like: `%${filterValue}%` } };
|
||||||
|
|
||||||
const query: any = {
|
const query: any = {
|
||||||
limit: 1,
|
limit: 25,
|
||||||
page: 1,
|
page: 1,
|
||||||
with_deleted: false,
|
with_deleted: false,
|
||||||
order_field: sorting[0].id,
|
order_field: sorting[0].id,
|
||||||
|
|||||||
Reference in New Issue
Block a user