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.
1 parent c302702 commit 52d5c5cCopy full SHA for 52d5c5c
packages-exp/auth-compat-exp/index.ts
@@ -42,8 +42,7 @@ function registerAuthCompat(instance: _FirebaseNamespace): void {
42
container => {
43
// getImmediate for FirebaseApp will always succeed
44
const app = container.getProvider('app').getImmediate();
45
- const auth = container.getProvider('auth-exp').getImmediate();
46
- return new Auth(app, auth as impl.AuthImpl);
+ return new Auth(app);
47
},
48
ComponentType.PUBLIC
49
)
@@ -82,5 +81,4 @@ function registerAuthCompat(instance: _FirebaseNamespace): void {
82
81
instance.registerVersion('auth', version);
83
}
84
85
-impl.registerAuth(_getClientPlatform());
86
registerAuthCompat(firebase as _FirebaseNamespace);
0 commit comments