We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7ea1b84 + a25961d commit 8cbf70cCopy full SHA for 8cbf70c
EmailAuth/FirebaseEmailAuthUI/FUIEmailAuth.m
@@ -199,9 +199,11 @@ - (void)signInWithDefaultValue:(nullable NSString *)defaultValue
199
}
200
} else {
201
if ([delegate respondsToSelector:@selector(emailEntryViewControllerForAuthUI:)]) {
202
- controller = [delegate passwordSignInViewControllerForAuthUI:self.authUI email:@""];
+ controller = [delegate passwordSignInViewControllerForAuthUI:self.authUI
203
+ email:defaultValue ?: @""];
204
- controller = [[FUIPasswordSignInViewController alloc] initWithAuthUI:self.authUI email:nil];
205
+ controller = [[FUIPasswordSignInViewController alloc] initWithAuthUI:self.authUI
206
+ email:defaultValue];
207
208
209
0 commit comments