Skip to content

Commit 4d4c71d

Browse files
committed
[AUTOMATED]: Prettier Code Styling
1 parent f681e6a commit 4d4c71d

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

packages-exp/auth-exp/src/api/index.ts

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,12 @@ import { AUTH_ERROR_FACTORY, AuthErrorCode } from '../core/errors';
2121
import { Delay } from '../core/util/delay';
2222
import { Auth } from '../model/auth';
2323
import { IdTokenResponse } from '../model/id_token';
24-
import { JsonError, SERVER_ERROR_MAP, ServerError, ServerErrorMap } from './errors';
24+
import {
25+
JsonError,
26+
SERVER_ERROR_MAP,
27+
ServerError,
28+
ServerErrorMap
29+
} from './errors';
2530

2631
export enum HttpMethod {
2732
POST = 'POST',
@@ -158,8 +163,9 @@ function makeNetworkTimeout<T>(appName: string): Promise<T> {
158163
setTimeout(() => {
159164
return reject(
160165
AUTH_ERROR_FACTORY.create(AuthErrorCode.TIMEOUT, {
161-
appName,
166+
appName
162167
})
163168
);
164-
}, DEFAULT_API_TIMEOUT_MS.get()));
169+
}, DEFAULT_API_TIMEOUT_MS.get())
170+
);
165171
}

0 commit comments

Comments
 (0)