Skip to content

Commit b80a92b

Browse files
jonsimantova-maurice
authored andcommitted
Enable INVALID_PROVIDER_ID on iOS, now that Firebase Auth iOS supports the
error enum. PiperOrigin-RevId: 243848202
1 parent 542abf1 commit b80a92b

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

auth/src/ios/auth_ios.mm

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,7 @@ @implementation FIRCPPAuthListenerHandle
9696
{FIRAuthErrorCodeWebContextAlreadyPresented, kAuthErrorWebContextAlreadyPresented},
9797
{FIRAuthErrorCodeWebContextCancelled, kAuthErrorWebContextCancelled},
9898
{FIRAuthErrorCodeWrongPassword, kAuthErrorWrongPassword},
99-
// TODO(b/128614989): Uncomment this when the Firebase Auth iOS SDK can handle the
100-
// INVALID_PROVIDER_ID error, returned by the backend when an app does not have a specific
101-
// provider enabled in the console.
102-
//
103-
// {FIRAuthErrorCodeInvalidProviderId, kAuthErrorInvalidProviderId},
99+
{FIRAuthErrorCodeInvalidProviderID, kAuthErrorInvalidProviderId},
104100
};
105101

106102
template<typename T>

0 commit comments

Comments
 (0)