Skip to content

Commit 12d7e28

Browse files
committed
Formatting pass
1 parent 7ca267e commit 12d7e28

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

packages/app-check/src/internal-api.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,6 @@ describe('internal api', () => {
432432

433433
const token = await getToken(appCheck as AppCheckService);
434434

435-
436435
// ReCaptchaV3Provider's _throttleData is private so checking
437436
// the resulting error message to be sure it has roughly the
438437
// correct throttle time. This also tests the time formatter.

packages/app-check/src/providers.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,4 +199,3 @@ describe('ReCaptchaEnterpriseProvider', () => {
199199
expect(token.token).to.equal('fake-exchange-token');
200200
});
201201
});
202-

packages/app-check/src/providers.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export class ReCaptchaV3Provider implements AppCheckProvider {
6464
*/
6565
async getToken(): Promise<AppCheckTokenInternal> {
6666
throwIfThrottled(this._throttleData);
67-
67+
6868
// Top-level `getToken()` has already checked that App Check is initialized
6969
// and therefore this._app and this._platformLoggerProvider are available.
7070
const attestedClaimsToken = await getReCAPTCHAToken(this._app!).catch(
@@ -160,7 +160,10 @@ export class ReCaptchaEnterpriseProvider implements AppCheckProvider {
160160
let result;
161161
try {
162162
result = await exchangeToken(
163-
getExchangeRecaptchaEnterpriseTokenRequest(this._app!, attestedClaimsToken),
163+
getExchangeRecaptchaEnterpriseTokenRequest(
164+
this._app!,
165+
attestedClaimsToken
166+
),
164167
this._platformLoggerProvider!
165168
);
166169
} catch (e) {

0 commit comments

Comments
 (0)