Skip to content

Commit

Permalink
fix: missed success color on SubSection
Browse files Browse the repository at this point in the history
  • Loading branch information
omerhabib26 committed Jul 3, 2024
1 parent 69e4c92 commit 6307ef7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ private fun CourseSubsectionItem(
CoreR.drawable.ic_core_chapter_icon
)
val completedIconColor =
if (block.isCompleted()) MaterialTheme.appColors.primary else MaterialTheme.appColors.onSurface
if (block.isCompleted()) MaterialTheme.appColors.successGreen else MaterialTheme.appColors.onSurface
val completedIconDescription = if (block.isCompleted()) {
stringResource(id = R.string.course_accessibility_section_completed)
} else {
Expand Down

0 comments on commit 6307ef7

Please sign in to comment.