Skip to content

Commit

Permalink
Issue #PS-2390 fix: Hide Task completion check mark icon
Browse files Browse the repository at this point in the history
  • Loading branch information
itsvick committed Dec 30, 2024
1 parent e930acb commit 0619cdc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/course-planner/center/[cohortId].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -590,15 +590,15 @@ const CoursePlannerDetail = () => {
}}
>
{/* Check if the parent task is completed and show a black tick */}
{isStatusCompleted(topic._id, false) ? (
{/*isStatusCompleted(topic._id, false) ? (
<CheckCircleIcon
sx={{ fontSize: '15px', color: 'black' }}
/>
) : (
<RadioButtonUncheckedIcon
sx={{ fontSize: '15px' }}
/>
)}
)*/}
<Typography
fontWeight="500"
fontSize="14px"
Expand Down

0 comments on commit 0619cdc

Please sign in to comment.