fix: update pagination limit to use the provided _limit parameter in workflow modal

This commit is contained in:
Yashwin 2026-05-14 12:50:07 +05:30
parent ec10281af9
commit da289b14de

View File

@ -610,7 +610,7 @@ export const WorkflowDefinitionModal = ({
}
return {
options: [],
pagination: { page: 1, limit, total: 0, totalPages: 0, hasMore: false }
pagination: { page: 1, limit: _limit, total: 0, totalPages: 0, hasMore: false }
};
};