Skip to content

Commit 444c39d

Browse files
authored
빌드 에러 해결 (#48)
1 parent 847948d commit 444c39d

File tree

4 files changed

+0
-30
lines changed

4 files changed

+0
-30
lines changed

Common/Base/Sources/Model/UserDTO.swift

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,6 @@ public struct UserDTO: Decodable {
3030
self.gender = gender
3131
}
3232

33-
public init(id: String, name: String, birthDate: String?, birthTime: [String]?, gender: GenderDTO)
34-
{
35-
self.id = id
36-
self.name = name
37-
self.birthDate = birthDate
38-
self.birthTime = birthTime
39-
self.gender = gender
40-
}
41-
4233
// TODO: 사주 정보?
4334
}
4435

Feature/Setting/Sources/EditPage/EditProfileViewController.swift

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -49,18 +49,6 @@ final class EditProfileViewController: BaseViewController {
4949
actionButtonTitle: "계속 수정하기", outButtonTitle: "나가기")
5050
}
5151

52-
private lazy var backgourndView = UIView().then {
53-
$0.isHidden = true
54-
$0.backgroundColor = STColors.black.color.withAlphaComponent(0.5)
55-
}
56-
57-
private lazy var popup = PopUp().then {
58-
$0.isHidden = true
59-
$0.update(
60-
titile: "수정 중인 내용이 있소", description: "저장하지 않고 화면을 벗어나면\n감쪽같이 사라질 것이오",
61-
actionButtonTitle: "계속 수정하기", outButtonTitle: "나가기")
62-
}
63-
6452
private lazy var nameStack = UIStackView().then {
6553
$0.axis = .vertical
6654
$0.spacing = 8

Feature/Setting/Sources/EditPage/EditProfileViewModel.swift

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,6 @@ final class EditProfileViewModel {
4848

4949
@Injected private var userDataManager: UserDataManager
5050
@Injected private var router: SettingRouter
51-
52-
@Injected private var userDataManager: UserDataManager
53-
@Injected private var router: SettingRouter
54-
5551
private var _isNameValid: Bool = true
5652
private var _isBirthDateValid: Bool = true
5753
private var _isBornTimeValied: Bool = true

Feature/Setting/Sources/MyPage/MyPageViewController.swift

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,6 @@ public final class MyPageViewController: BaseViewController {
6565

6666
}
6767

68-
public override func viewWillAppear(_ animated: Bool) {
69-
super.viewWillAppear(animated)
70-
71-
}
72-
7368
private func setupUI() {
7469
view.backgroundColor = STColors.primary9.color
7570

0 commit comments

Comments
 (0)