Skip to content

Commit

Permalink
Merge pull request #60 from THT-Team/Fix/do_not_scroll_cardview
Browse files Browse the repository at this point in the history
[#59]Fix: 타이머가 끝난 후에 다음 유저 카드로 넘어가지 않는 현상 수정
  • Loading branch information
Minny27 authored Feb 1, 2024
2 parents 029ccb8 + 6d88259 commit 6aca220
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ final class FallinguserCollectionViewCellModel: ViewModelType {
scheduler: MainScheduler.instance)
.take(Int(startTime * 100) + 1) // 시간의 총 개수
.map { value in
let time = (startTime * 100 - Double(value)) / 100
let time = round((startTime * 100 - Double(value))) / 100
currentTime = time
return time
}
Expand Down

0 comments on commit 6aca220

Please sign in to comment.