Skip to content

Commit

Permalink
fix: repeated task issue
Browse files Browse the repository at this point in the history
  • Loading branch information
vishal2376 committed Apr 2, 2024
1 parent 3c8ab77 commit b5befec
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ fun TaskComponent(
)
}
}
if (task.repeatWeekdays.isNotEmpty()) {
if (task.repeatWeekdays.isNotEmpty() && task.isRepeated) {
Row(
modifier = Modifier.padding(top = 2.dp),
horizontalArrangement = Arrangement.spacedBy(4.dp),
Expand Down

0 comments on commit b5befec

Please sign in to comment.