File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -317,10 +317,10 @@ function onUseDeviceLanguage() {
317
317
/**
318
318
* Set tenant id for the firebase project.
319
319
*/
320
- function onSetTenantIdClick ( _event ) {
320
+ function onSetTenantIdClick ( _event ) {
321
321
console . log ( 'onSetTenant called' ) ;
322
322
const tenantId = $ ( '#set-tenant' ) . val ( ) ;
323
- auth . tenantId = tenantId === "" ? null : tenantId ;
323
+ auth . tenantId = tenantId === '' ? null : tenantId ;
324
324
alertSuccess ( 'Tenant Id : ' + auth . tenantId ) ;
325
325
}
326
326
/**
@@ -2040,6 +2040,7 @@ function initApp() {
2040
2040
$ ( '#enroll-mfa-totp-start' ) . click ( onStartEnrollWithTotpMultiFactor ) ;
2041
2041
// Completes multi-factor enrollment with supplied OTP(One-Time Password).
2042
2042
$ ( '#enroll-mfa-totp-finalize' ) . click ( onFinalizeEnrollWithTotpMultiFactor ) ;
2043
+ // Sets tenant for the current auth instance
2043
2044
$ ( '#set-tenant-btn' ) . click ( onSetTenantIdClick ) ;
2044
2045
}
2045
2046
You can’t perform that action at this time.
0 commit comments