Skip to content

Commit 7eb4ea6

Browse files
committed
fixed indentations
1 parent 0e254b8 commit 7eb4ea6

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

packages/auth/src/exports_auth.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -674,8 +674,8 @@ fireauth.exportlib.exportFunction(
674674
const authComponent = { // provides Auth public APIs
675675
'name': fireauth.exportlib.AUTH_TYPE,
676676
'instanceFactory': function(container) {
677-
var app = container['getProvider']('app')['getImmediate']();
678-
return new fireauth.Auth(app);
677+
var app = container['getProvider']('app')['getImmediate']();
678+
return new fireauth.Auth(app);
679679
},
680680
'multipleInstances': false,
681681
'serviceProps': namespace,
@@ -686,15 +686,15 @@ fireauth.exportlib.exportFunction(
686686
const authInteropComponent = { // provides Auth internal APIs
687687
'name': 'auth-internal',
688688
'instanceFactory': function(container) {
689-
var auth = container['getProvider'](fireauth.exportlib.AUTH_TYPE)['getImmediate']();
690-
return {
689+
var auth = container['getProvider'](fireauth.exportlib.AUTH_TYPE)['getImmediate']();
690+
return {
691691
'getUid': goog.bind(auth.getUid, auth),
692692
'getToken': goog.bind(auth.getIdTokenInternal, auth),
693693
'addAuthTokenListener':
694-
goog.bind(auth.addAuthTokenListenerInternal, auth),
694+
goog.bind(auth.addAuthTokenListenerInternal, auth),
695695
'removeAuthTokenListener':
696-
goog.bind(auth.removeAuthTokenListenerInternal, auth)
697-
};
696+
goog.bind(auth.removeAuthTokenListenerInternal, auth)
697+
};
698698
},
699699
'multipleInstances': false,
700700
'instantiationMode': 'LAZY',

0 commit comments

Comments
 (0)