diff --git a/src/components/Project/ManageProjectInfo.jsx b/src/components/Project/ManageProjectInfo.jsx
index 3aad8e60..4b5d6abf 100644
--- a/src/components/Project/ManageProjectInfo.jsx
+++ b/src/components/Project/ManageProjectInfo.jsx
@@ -263,7 +263,7 @@ const ManageProjectInfo = ({ project, handleSubmitForm, onClose }) => {
- {/* */}
+
diff --git a/src/utils/projectStatus.js b/src/utils/projectStatus.js
index 7eb803b9..f029fdb4 100644
--- a/src/utils/projectStatus.js
+++ b/src/utils/projectStatus.js
@@ -4,8 +4,8 @@ export const getProjectStatusName = (statusId) => {
return "Active";
case "603e994b-a27f-4e5d-a251-f3d69b0498ba":
return "On Hold";
- // case 3:
- // return "Suspended";
+ case "cdad86aa-8a56-4ff4-b633-9c629057dfef":
+ return "In Progress";
case "ef1c356e-0fe0-42df-a5d3-8daee355492d":
return "Inactive";
case "33deaef9-9af1-4f2a-b443-681ea0d04f81":
@@ -23,8 +23,8 @@ export const getProjectStatusColor = (statusId) => {
return "bg-label-info";
case "33deaef9-9af1-4f2a-b443-681ea0d04f81":
return "bg-label-secondary";
- case 5:
- return "bg-label-dark";
+ case "cdad86aa-8a56-4ff4-b633-9c629057dfef":
+ return "bg-label-success";
}
};