- removed submitted applications from Applications page and display them in Archive page for beneficiary;

This commit is contained in:
Vitalii Kiiko
2024-11-19 08:52:48 +01:00
parent 661601bf61
commit e59a64ae7b
2 changed files with 2 additions and 2 deletions

View File

@@ -40,7 +40,7 @@ const MyLatestSubmissionsTable = () => {
setLocalAsyncRequest(true);
ApplicationService.getApplications(getApplCallback, errGetApplCallback, [
['companyId', chosenCompanyId],
['statuses', ['DRAFT', 'AWAITING', 'READY', 'SUBMIT']]
['statuses', ['DRAFT', 'AWAITING', 'READY']]
]);
}
}, [chosenCompanyId]);