Skip to content

Commit

Permalink
🐛 일일 운동 시간이 분단위로 표기되었던 이슈 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
soopeach committed Dec 5, 2024
1 parent 233de10 commit 7b99c6a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ fun ChallengeGoalIndicator(challenge: Challenge) {
ChallengeGoalItem(
modifier = Modifier.weight(1f),
goal = "일일 운동 시간",
limit = "${challenge.time}시간"
limit = "${(challenge.time ?: 0) / 60} 시간"
)
}

Expand Down

0 comments on commit 7b99c6a

Please sign in to comment.