Skip to content

Commit 446b452

Browse files
authored
Fix style issue from quick merge of 8214 (#8216)
1 parent 05819ac commit 446b452

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

FirebaseAuth/Sources/AuthProvider/Phone/FIRPhoneAuthProvider.m

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,8 @@ - (nullable NSString *)reCAPTCHATokenForURL:(NSURL *)URL error:(NSError **_Nonnu
277277
if (!*error) {
278278
NSString *reason;
279279
if (errorDict[@"code"] && errorDict[@"message"]) {
280-
reason = [NSString stringWithFormat:@"[%@] - %@", errorDict[@"code"], errorDict[@"message"]];
280+
reason =
281+
[NSString stringWithFormat:@"[%@] - %@", errorDict[@"code"], errorDict[@"message"]];
281282
} else {
282283
reason = [NSString stringWithFormat:@"An unknown error occurred with the following "
283284
"response: %@",

0 commit comments

Comments
 (0)