diff --git a/src/components/ServiceProject/ManageServiceProject.jsx b/src/components/ServiceProject/ManageServiceProject.jsx
index e995b691..f16b18eb 100644
--- a/src/components/ServiceProject/ManageServiceProject.jsx
+++ b/src/components/ServiceProject/ManageServiceProject.jsx
@@ -192,8 +192,8 @@ const ManageServiceProject = ({ serviceProjectId, onClose }) => {
{...register("statusId")}
>
- {PROJECT_STATUS.map((status) => (
-
+ {PROJECT_STATUS?.map((status) => (
+
))}
{errors?.statusId && (
diff --git a/src/components/ServiceProject/ServiceProjectBranch/ServiceBranch.jsx b/src/components/ServiceProject/ServiceProjectBranch/ServiceBranch.jsx
index 4e55618a..c1d17365 100644
--- a/src/components/ServiceProject/ServiceProjectBranch/ServiceBranch.jsx
+++ b/src/components/ServiceProject/ServiceProjectBranch/ServiceBranch.jsx
@@ -103,7 +103,7 @@ const ServiceBranch = () => {
htmlFor="inactiveEmployeesCheckbox"
className="ms-2 text-xs"
>
- Show Deleted Branches
+ {!showInactive ? "Show Deleted" : "Hide Deleted"}
diff --git a/src/components/ServiceProject/ServiceProjectTeam/ServiceProjectTeamAllocation.jsx b/src/components/ServiceProject/ServiceProjectTeam/ServiceProjectTeamAllocation.jsx
index 37005288..e8ef3c36 100644
--- a/src/components/ServiceProject/ServiceProjectTeam/ServiceProjectTeamAllocation.jsx
+++ b/src/components/ServiceProject/ServiceProjectTeam/ServiceProjectTeamAllocation.jsx
@@ -162,7 +162,7 @@ const ServiceProjectTeamAllocation = () => {
{selectedEmployees.map((e) => (
-
+
))}
>
diff --git a/src/components/common/Chips.jsx b/src/components/common/Chips.jsx
index 4b8bd8e3..18972b2d 100644
--- a/src/components/common/Chips.jsx
+++ b/src/components/common/Chips.jsx
@@ -1,45 +1,44 @@
-import React from 'react'
+import React from "react";
-export const EmployeeChip = ({handleRemove,employee}) => {
- return(
-
-
- {employee?.photo ? (
-
-
-
- ) : (
-
-
- {employee?.firstName?.[0] || ""}
- {employee?.lastName?.[0] || ""}
-
-
- )}
+export const EmployeeChip = ({ handleRemove, employee }) => {
+ return (
+
+
+ {employee?.photo ? (
+
+
+
+ ) : (
+
+
+ {employee?.firstName?.[0] || ""}
+ {employee?.lastName?.[0] || ""}
+
+
+ )}
-
-
- {employee?.firstName} {employee?.lastName}
-
-
-
-
- handleRemove(employee?.id)}
- aria-label={`Remove ${employee?.firstName}`}
- title="Remove"
- />
-
- )
-}
+
+
+ {employee?.firstName} {employee?.lastName}
+
+
+
+ handleRemove(employee?.id)}
+ aria-label={`Remove ${employee?.firstName}`}
+ title="Remove"
+ />
+
+ );
+};
diff --git a/src/components/common/Forms/InputSuggesstionField.jsx b/src/components/common/Forms/InputSuggesstionField.jsx
index 9b63ff86..2dd700c0 100644
--- a/src/components/common/Forms/InputSuggesstionField.jsx
+++ b/src/components/common/Forms/InputSuggesstionField.jsx
@@ -14,7 +14,6 @@ const InputSuggessionField = ({
}) => {
const [open, setOpen] = useState(false);
const dropdownRef = useRef(null);
-console.log(suggesstionList)
useEffect(() => {
const handleClickOutside = (event) => {
if (dropdownRef.current && !dropdownRef.current.contains(event.target)) {
@@ -61,7 +60,7 @@ console.log(suggesstionList)
{open && !isLoading && (