Skip to content

Commit 94d1913

Browse files
committed
yarn run format
1 parent 205916f commit 94d1913

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

packages/auth/src/core/auth/firebase_internal.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,9 @@ describe('core/auth/firebase_internal - Regional Firebase Auth', () => {
288288
});
289289
expect(console.warn).to.have.been.calledWith(
290290
sinon.match.string,
291-
sinon.match(/Refresh token is not a valid operation for Regional Auth instance initialized\./)
291+
sinon.match(
292+
/Refresh token is not a valid operation for Regional Auth instance initialized\./
293+
)
292294
);
293295
});
294296
});

packages/auth/src/core/auth/firebase_internal.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,9 @@ export class AuthInterop implements FirebaseAuthInternal {
4747
await this.auth._initializationPromise;
4848
if (this.auth.tenantConfig) {
4949
if (forceRefresh) {
50-
_logWarn("Refresh token is not a valid operation for Regional Auth instance initialized.");
50+
_logWarn(
51+
'Refresh token is not a valid operation for Regional Auth instance initialized.'
52+
);
5153
}
5254
return this.getTokenForRegionalAuth();
5355
}
@@ -105,7 +107,9 @@ export class AuthInterop implements FirebaseAuthInternal {
105107
}
106108
}
107109

108-
private async getTokenForRegionalAuth(): Promise<{ accessToken: string } | null> {
110+
private async getTokenForRegionalAuth(): Promise<{
111+
accessToken: string;
112+
} | null> {
109113
if (!this.auth.firebaseToken) {
110114
return null;
111115
}

0 commit comments

Comments
 (0)