From 3a023df7eaf3f793edbe0e2582868e94a19211af Mon Sep 17 00:00:00 2001 From: Vitalii Kiiko Date: Tue, 14 Apr 2026 11:16:02 +0200 Subject: [PATCH] - removed technical evaluation status from change status tool; --- src/pages/Admin/components/ManageApplStatusSection/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/Admin/components/ManageApplStatusSection/index.js b/src/pages/Admin/components/ManageApplStatusSection/index.js index 876b987..aa2d5d3 100644 --- a/src/pages/Admin/components/ManageApplStatusSection/index.js +++ b/src/pages/Admin/components/ManageApplStatusSection/index.js @@ -24,12 +24,12 @@ import { Toast } from 'primereact/toast'; const allStatuses = [ 'SUBMIT', 'EVALUATION', 'SOCCORSO', 'APPOINTMENT', 'NDG', 'ADMISSIBLE', - 'AWAITING_TECHNICAL_EVALUATION', 'TECHNICAL_EVALUATION', 'APPROVED', 'REJECTED' + 'AWAITING_TECHNICAL_EVALUATION', 'APPROVED', 'REJECTED' ]; const availableStatuses = [ 'EVALUATION', 'SOCCORSO', 'APPOINTMENT', 'NDG', 'ADMISSIBLE', - 'AWAITING_TECHNICAL_EVALUATION', 'TECHNICAL_EVALUATION', 'APPROVED', 'REJECTED' + 'AWAITING_TECHNICAL_EVALUATION', 'APPROVED', 'REJECTED' ]; const ManageApplStatusSection = () => {