Skip to content

Commit c439dd0

Browse files
committed
Refactor: 오타 수정
1 parent 1a433fc commit c439dd0

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

Projects/Presentation/Sources/Common/Extension/UIViewController+.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ extension UIViewController {
1616
case withProgressBar(step: Int) // 백버튼 + progress
1717
}
1818

19-
func configureCustomNaviagtionBar(navigationBarStyle: NavigationBarStyle) {
19+
func configureCustomNavigationBar(navigationBarStyle: NavigationBarStyle) {
2020
let safeArea = self.view.safeAreaLayoutGuide
2121
let navigationBar: UIView = customNavigationBar(navigationBarStyle: navigationBarStyle)
2222

Projects/Presentation/Sources/Login/View/TermsAgreementViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ final class TermsAgreementViewController: BaseViewController<LoginViewModel> {
5959
let safeArea = view.safeAreaLayoutGuide
6060
view.backgroundColor = .systemBackground
6161
navigationController?.setNavigationBarHidden(true, animated: false)
62-
configureCustomNaviagtionBar(navigationBarStyle: .withBackButton(title: "약관 동의"))
62+
configureCustomNavigationBar(navigationBarStyle: .withBackButton(title: "약관 동의"))
6363

6464
view.addSubview(agreementLabel)
6565
view.addSubview(totalAgreementButton)

Projects/Presentation/Sources/Onboarding/View/OnboardingResultViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ final class OnboardingResultViewController: BaseViewController<OnboardingViewMod
114114
let safeArea = view.safeAreaLayoutGuide
115115
view.backgroundColor = .systemBackground
116116
navigationController?.setNavigationBarHidden(true, animated: false)
117-
configureCustomNaviagtionBar(navigationBarStyle: .withProgressBar(step: OnboardingType.allCases.count + 1))
117+
configureCustomNavigationBar(navigationBarStyle: .withProgressBar(step: OnboardingType.allCases.count + 1))
118118

119119
view.addSubview(mainLabel)
120120
view.addSubview(resultGraphicView)

Projects/Presentation/Sources/Onboarding/View/OnboardingViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ final class OnboardingViewController: BaseViewController<OnboardingViewModel> {
123123
let safeArea = view.safeAreaLayoutGuide
124124
view.backgroundColor = .systemBackground
125125
navigationController?.setNavigationBarHidden(true, animated: false)
126-
configureCustomNaviagtionBar(navigationBarStyle: .withProgressBar(step: onboarding.step))
126+
configureCustomNavigationBar(navigationBarStyle: .withProgressBar(step: onboarding.step))
127127

128128
view.addSubview(mainLabel)
129129
view.addSubview(choiceStackView)

Projects/Presentation/Sources/ResultRecommendedRoutine/View/ResultRecommendedRoutineView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ final class ResultRecommendedRoutineView: BaseViewController<ResultRecommendedRo
174174
let safeArea = view.safeAreaLayoutGuide
175175
view.backgroundColor = .systemBackground
176176
navigationController?.setNavigationBarHidden(true, animated: false)
177-
configureCustomNaviagtionBar(navigationBarStyle: .withProgressBar(step: OnboardingType.allCases.count + 1))
177+
configureCustomNavigationBar(navigationBarStyle: .withProgressBar(step: OnboardingType.allCases.count + 1))
178178

179179
view.addSubview(mainLabel)
180180
view.addSubview(subLabel)

0 commit comments

Comments
 (0)