Skip to content

Commit 4cbefb6

Browse files
committed
πŸ”§ [chore] μ˜€νƒ€ μˆ˜μ •
1 parent 1ba852a commit 4cbefb6

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

β€ŽFitfty/Projects/Setting/Sources/Home/View/SettingCell.swiftβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ extension SettingCell {
7070
func setUp(item: Setting) {
7171
titleLabel.text = item.title
7272
separator.isHidden = !item.isNextPage
73-
if item == .membershipWithdrawal {
73+
if item == .membershipWithdrawl {
7474
titleLabel.textColor = .systemRed
7575
}
7676
}

β€ŽFitfty/Projects/Setting/Sources/Home/ViewController/SettingViewController.swiftβ€Ž

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,9 @@ extension SettingViewController: UICollectionViewDelegate {
156156
case .privacyRule:
157157
coordinator?.showPrivacyRule()
158158

159+
case .askHelp:
160+
161+
159162
default: break
160163
}
161164
}

β€ŽFitfty/Projects/Setting/Sources/PersonalInfo/ViewController/PersonalInfoViewController.swiftβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ extension PersonalInfoViewController: UICollectionViewDelegate {
359359
self?.viewModel.logout()
360360
}
361361

362-
case .membershipWithdrawal:
362+
case .membershipWithdrawl:
363363
viewModel.withdrawAccount()
364364

365365
default: break

β€ŽFitfty/Projects/Setting/Sources/Utility/Model/Setting.swiftβ€Ž

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ enum Setting {
1616
case feed
1717
case pushNoti
1818
case logout
19-
case membershipWithdrawal
19+
case membershipWithdrawl
20+
case askHelp
2021

2122
case contact
2223
case nickname
@@ -38,7 +39,8 @@ extension Setting {
3839
case .feed: return "핏프티 ν”Όλ“œ 정보 μ„€μ •"
3940
case .pushNoti: return "푸쉬 μ•Œλ¦Ό μ„€μ •"
4041
case .logout: return "λ‘œκ·Έμ•„μ›ƒ"
41-
case .membershipWithdrawal: return "νšŒμ› νƒˆν‡΄"
42+
case .membershipWithdrawl: return "νšŒμ› νƒˆν‡΄"
43+
case .askHelp: return "문의 ν•˜κΈ°"
4244
case .contact: return "νœ΄λŒ€μ „ν™”"
4345
case .nickname: return "λ‹‰λ„€μž„"
4446
case .birthDate: return "생년월일"
@@ -57,11 +59,11 @@ extension Setting {
5759
}
5860

5961
static func settings() -> [Setting] {
60-
return [.profile, .myInfo, .termsOfUse, .privacyRule]
62+
return [.profile, .myInfo, .termsOfUse, .privacyRule, .askHelp]
6163
}
6264

6365
static func etc() -> [Setting] {
64-
return [.logout, .membershipWithdrawal]
66+
return [.logout, .membershipWithdrawl]
6567
}
6668

6769
static func info() -> [Setting] {

0 commit comments

Comments
Β (0)