Skip to content

Commit 6e0c987

Browse files
committed
address comments
1 parent ee8efd9 commit 6e0c987

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages-exp/auth-exp/src/core/auth/register.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ export function registerAuth(clientPlatform: ClientPlatform): void {
9292
)
9393
/**
9494
* Auth can only be initialized by explicitly calling getAuth() or initializeAuth()
95-
* For why we do this, See https://docs.google.com/document/d/1vy9aI-fELpL2xlREoZt12o0JNw-JVNz4OwxYd9HcT0Y/edit?resourcekey=0-A714tRurcRonkj3lDuKVCw#heading=h.wcvc4xz0pwxf
95+
* For why we do this, See go/firebase-next-auth-init
9696
*/
9797
.setInstantiationMode(InstantiationMode.EXPLICIT)
9898
/**

packages/component/src/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import { ComponentContainer } from './component_container';
1919

2020
export const enum InstantiationMode {
2121
LAZY = 'LAZY', // Currently most components are LAZY in JS SDK
22-
EAGER = 'EAGER',
22+
EAGER = 'EAGER', // EAGER components are initialized immediately upon registration
2323
EXPLICIT = 'EXPLICIT' // component needs to be initialized explicitly by calling Provider.initialize()
2424
}
2525

0 commit comments

Comments
 (0)