File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed
Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change 9797 <pod name =" FirebaseUI/Auth" />
9898 <pod name =" FirebaseUI/Google" />
9999 <pod name =" FirebaseUI/Facebook" />
100+ <pod name =" FirebaseUI/Email" />
100101 </pods >
101102 </podspec >
102103 </platform >
Original file line number Diff line number Diff line change @@ -50,8 +50,6 @@ - (void)createProviderList:(NSDictionary *)options {
5050
5151 if (providers != nil ) {
5252
53- BOOL emailHidden = true ;
54-
5553 for (NSString *provider in providers) {
5654 if ([provider isEqualToString: @" GOOGLE" ]) {
5755 [self .providers addObject: [[FUIGoogleAuth alloc ] init ]];
@@ -62,12 +60,10 @@ - (void)createProviderList:(NSDictionary *)options {
6260 }
6361
6462 if ([provider isEqualToString: @" EMAIL" ]) {
65- emailHidden = false ;
63+ [ self .providers addObject: [[FUIEmailAuth alloc ] init ]] ;
6664 }
6765 }
6866
69- [self .authUI setSignInWithEmailHidden: emailHidden];
70-
7167 self.authUI .providers = self.providers ;
7268 }
7369}
You can’t perform that action at this time.
0 commit comments