Skip to content

Commit

Permalink
merge
Browse files Browse the repository at this point in the history
  • Loading branch information
sagarika-padmanaban committed Nov 18, 2024
1 parent a1a6b96 commit 64f1832
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/components/Project/AllTaskTable.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,12 @@ const AllTaskTable = (props) => {
const [selectedFilters, setsSelectedFilters] = useState({
task_status: [filterData.Status[0]],
});

if (ProjectDetails?.project_type === "MultipleInteractionEvaluation") {
filterData.Status = filterData.Status.filter(
(status) => status !== "super_checked"
);
}

const GetAllTasksdata = () => {
const taskobj = {
id: id,
Expand Down

0 comments on commit 64f1832

Please sign in to comment.