File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
packages-exp/auth-exp/src/api Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,12 @@ import { AUTH_ERROR_FACTORY, AuthErrorCode } from '../core/errors';
21
21
import { Delay } from '../core/util/delay' ;
22
22
import { Auth } from '../model/auth' ;
23
23
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' ;
25
30
26
31
export enum HttpMethod {
27
32
POST = 'POST' ,
@@ -158,8 +163,9 @@ function makeNetworkTimeout<T>(appName: string): Promise<T> {
158
163
setTimeout ( ( ) => {
159
164
return reject (
160
165
AUTH_ERROR_FACTORY . create ( AuthErrorCode . TIMEOUT , {
161
- appName,
166
+ appName
162
167
} )
163
168
) ;
164
- } , DEFAULT_API_TIMEOUT_MS . get ( ) ) ) ;
169
+ } , DEFAULT_API_TIMEOUT_MS . get ( ) )
170
+ ) ;
165
171
}
You can’t perform that action at this time.
0 commit comments