Skip to content

Commit 62bf073

Browse files
committed
FE: Reuse text var in TasksCell component
1 parent 4d9b6d7 commit 62bf073

File tree

1 file changed

+1
-5
lines changed
  • frontend/src/components/Connect/Clusters/ui/List/Cells

1 file changed

+1
-5
lines changed

frontend/src/components/Connect/Clusters/ui/List/Cells/TasksCell.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,6 @@ const TasksCell = ({ connect }: Props) => {
2121
);
2222
}
2323

24-
return (
25-
<div>
26-
{count - failedCount}/{count}
27-
</div>
28-
);
24+
return <div>{text}</div>;
2925
};
3026
export default TasksCell;

0 commit comments

Comments
 (0)