feat(topups): add support for fetching all topups in getTopups function
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 7m2s

This commit is contained in:
2025-07-25 11:06:55 +05:00
parent a2425009ee
commit aedf7cdf7d
2 changed files with 3 additions and 3 deletions

View File

@ -39,7 +39,7 @@ export async function AdminTopupsTable({
}
apiParams.limit = limit;
apiParams.offset = offset;
const [error, topups] = await tryCatch(getTopups(apiParams,));
const [error, topups] = await tryCatch(getTopups(apiParams, true));
if (error) {
if (error.message.includes("Unauthorized")) {