This commit is contained in:
2025-12-03 16:48:25 +08:00
parent c1c4c85bd2
commit 91e2b047eb
3 changed files with 22 additions and 6 deletions

View File

@@ -149,8 +149,8 @@
// %@
NSString *template = KBLocalized(@"We have already sent it to the email address %@. Please enter the 6-digit verification code from the email to verify your mailbox.");
//
NSString *email = @"example@mail.com";
// 使使
NSString *email = self.email.length > 0 ? self.email : @"example@mail.com";
_descLabel.text = [NSString stringWithFormat:template, email];
}
return _descLabel;