|
@@ -227,8 +227,8 @@ class KMSignUpViewModel: ObservableObject {
|
|
|
}
|
|
|
code = verificationCode
|
|
|
} else if signUpState == .password {
|
|
|
- if password.count <= 0 || verificationCode.count > 30 {
|
|
|
- passwordErrorMessage = NSLocalizedString("Password error.", tableName: "MemberCenterLocalizable", comment: "")
|
|
|
+ if password.count <= 0 || password.count > 30 {
|
|
|
+ passwordErrorMessage = NSLocalizedString("Password cannot exceed 30 characters.", tableName: "MemberCenterLocalizable", comment: "")
|
|
|
|
|
|
callback?(nil)
|
|
|
return
|