Skip to content

Commit 81c121d

Browse files
authored
fix lint (#373)
1 parent 39c5865 commit 81c121d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/authorization/authorization.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,10 @@ export function initialize(
7070
let authInterceptor: number | null = generateJWT
7171
? null
7272
: baseAxiosRequest.interceptors.request.use((config) => {
73-
config.headers.set('Api-Key', authToken);
73+
config.headers.set('Api-Key', authToken);
7474

75-
return config;
76-
});
75+
return config;
76+
});
7777
let userInterceptor: number | null = null;
7878
let responseInterceptor: number | null = null;
7979
/*

0 commit comments

Comments
 (0)