Skip to content

Commit 6025cbc

Browse files
committed
run linter
1 parent db71965 commit 6025cbc

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

packages/app-compat/src/index.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*/
1717

1818
import { FirebaseNamespace } from './public-types';
19-
import { isBrowser, getGlobal } from '@firebase/util';
19+
import { getGlobal } from '@firebase/util';
2020
import { firebase as firebaseNamespace } from './firebaseNamespace';
2121
import { logger } from './logger';
2222
import { registerCoreComponents } from './registerCoreComponents';
@@ -39,14 +39,14 @@ try {
3939

4040
// eslint-disable-next-line
4141
const sdkVersion = ((globals as any).firebase as FirebaseNamespace).SDK_VERSION;
42-
if (sdkVersion && sdkVersion.indexOf('LITE') >= 0) {
43-
logger.warn(`
42+
if (sdkVersion && sdkVersion.indexOf('LITE') >= 0) {
43+
logger.warn(`
4444
Warning: You are trying to load Firebase while using Firebase Performance standalone script.
4545
You should load Firebase Performance with this instance of Firebase to avoid loading duplicate code.
4646
`);
47-
}
47+
}
4848
}
49-
} catch{
49+
} catch {
5050
// ignore errors thrown by getGlobal
5151
}
5252

0 commit comments

Comments
 (0)