Skip to content

Commit

Permalink
#52 fix: 타이머 편집시, 시간을 변경하지 않아도 '확인'버튼이 활성화되는 문제 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
sanghyeok-kim committed Aug 11, 2023
1 parent 068bb67 commit 737a174
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Multimer/Multimer/Domain/Model/Timer.swift
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ extension Timer: Equatable {
static func == (lhs: Timer, rhs: Timer) -> Bool {
return (lhs.name == rhs.name)
&& (lhs.tag == rhs.tag)
&& (lhs.time == rhs.time)
&& (lhs.time.totalSeconds == rhs.time.totalSeconds)
&& (lhs.ringtone == rhs.ringtone)
}
}
Expand Down

0 comments on commit 737a174

Please sign in to comment.