From e59a64ae7b9c3f4dcd000b59b919e555722dac47 Mon Sep 17 00:00:00 2001 From: Vitalii Kiiko Date: Tue, 19 Nov 2024 08:52:48 +0100 Subject: [PATCH] - removed submitted applications from Applications page and display them in Archive page for beneficiary; --- .../components/MyLatestSubmissionsTable/index.js | 2 +- .../components/BeneficiarioDomandeTable/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/DashboardBeneficiario/components/MyLatestSubmissionsTable/index.js b/src/pages/DashboardBeneficiario/components/MyLatestSubmissionsTable/index.js index 75a7865..ce3f987 100644 --- a/src/pages/DashboardBeneficiario/components/MyLatestSubmissionsTable/index.js +++ b/src/pages/DashboardBeneficiario/components/MyLatestSubmissionsTable/index.js @@ -40,7 +40,7 @@ const MyLatestSubmissionsTable = () => { setLocalAsyncRequest(true); ApplicationService.getApplications(getApplCallback, errGetApplCallback, [ ['companyId', chosenCompanyId], - ['statuses', ['DRAFT', 'AWAITING', 'READY', 'SUBMIT']] + ['statuses', ['DRAFT', 'AWAITING', 'READY']] ]); } }, [chosenCompanyId]); diff --git a/src/pages/DomandeBeneficiario/components/BeneficiarioDomandeTable/index.js b/src/pages/DomandeBeneficiario/components/BeneficiarioDomandeTable/index.js index 22ac157..56bc773 100644 --- a/src/pages/DomandeBeneficiario/components/BeneficiarioDomandeTable/index.js +++ b/src/pages/DomandeBeneficiario/components/BeneficiarioDomandeTable/index.js @@ -40,7 +40,7 @@ const BeneficiarioDomandeTable = () => { setLocalAsyncRequest(true); ApplicationService.getApplications(getApplCallback, errGetApplCallback, [ ['companyId', chosenCompanyId], - ['statuses', ['SOCCORSO', 'APPROVED', 'REJECTED', 'EVALUATION']] + ['statuses', ['SOCCORSO', 'APPROVED', 'REJECTED', 'EVALUATION', 'SUBMIT']] ]); } }, [chosenCompanyId]);