Skip to content

Commit 20c6a54

Browse files
Fix a bug where translation string is not correctly populated
fix #484
1 parent 5d61d1a commit 20c6a54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

FirebasePhoneAuthUI/FUIPrivacyAndTermsOfServiceView+PhoneAuth.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ - (void)useFullMessageWithSMSRateTerm {
3434
- (NSAttributedString *)fullPrivacyPolicyAndTOSMessageWithSMSRateInfo {
3535
NSString *messageFormat =
3636
[NSString stringWithFormat:FUIPhoneAuthLocalizedString(kPAStr_TermsSMS),
37-
FUIPhoneAuthLocalizedString(kPAStr_Verify)];
37+
FUIPhoneAuthLocalizedString(kPAStr_Verify), @"%@", @"%@"];
3838
return [self privacyPolicyAndTOSMessageFromFormat:messageFormat];
3939

4040

0 commit comments

Comments
 (0)