Skip to content

Commit 040f4c8

Browse files
committed
Change label text
1 parent bda84fe commit 040f4c8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

SNUTT-2022/SNUTT/Views/Components/SignUpView.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ struct SignUpView: View {
2121
}
2222

2323
enum DisplayMode: String {
24-
case register = "계정 만들기"
24+
case register = "회원가입"
2525
case attach = "계정 추가하기"
2626
}
2727

@@ -89,7 +89,7 @@ struct SignUpView: View {
8989
}
9090
}
9191
} label: {
92-
Text(displayMode == .register ? "계속하기" : displayMode.rawValue)
92+
Text(displayMode == .register ? "계정 만들기" : displayMode.rawValue)
9393
.padding(.vertical, 5)
9494
.font(.system(size: 17, weight: .semibold))
9595
.frame(maxWidth: .infinity)

SNUTT-2022/SNUTT/Views/Scenes/Settings/SettingScene.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ struct SettingScene: View {
7575
SettingsLinkItem(title: "서비스 약관") {
7676
TermsOfServiceView()
7777
}
78-
SettingsLinkItem(title: "개인정보 처리방침") {
78+
SettingsLinkItem(title: "개인정보처리방침") {
7979
PrivacyPolicyView()
8080
}
8181
}

0 commit comments

Comments
 (0)