fix limit to 25

This commit is contained in:
Wikzyy
2025-04-24 14:33:54 +07:00
parent 77831a2dec
commit 132861fcb5

View File

@ -47,7 +47,7 @@ const TransactionDisbursement = () => {
filterValue.trim().length === 0 ? {} : { msisdn: { like: `%${filterValue}%` } };
const query: any = {
limit: 1,
limit: 25,
page: 1,
with_deleted: false,
order_field: sorting[0].id,