Skip to content

Commit de3da0f

Browse files
committed
chore #98: 주석 제거
1 parent e68abf3 commit de3da0f

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

dogether/Presentation/Common/StatusChip.swift

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
import UIKit
99

1010
enum StatusChipStyle {
11-
case selectable // 필터 선택용 (선택/미선택 상태)
12-
case display // 상태 표시용 (단순 표시)
11+
case selectable
12+
case display
1313
}
1414

1515
final class StatusChip: BaseButton {
16-
// MARK: - Delegates (selectable 스타일 전용)
16+
// MARK: - Delegates
1717
var mainDelegate: MainDelegate? {
1818
didSet {
1919
guard let filterType = filterType else { return }
@@ -47,15 +47,13 @@ final class StatusChip: BaseButton {
4747

4848
// MARK: - Initializers
4949

50-
/// selectable 스타일용 (FilterButton 대체)
5150
init(filterType: FilterTypes) {
5251
self.style = .selectable
5352
self.filterType = filterType
5453

5554
super.init(frame: .zero)
5655
}
5756

58-
/// display 스타일용 (TodoStatusButton 대체)
5957
init() {
6058
self.style = .display
6159
self.filterType = nil

0 commit comments

Comments
 (0)