Skip to content

Commit

Permalink
fix lint (#373)
Browse files Browse the repository at this point in the history
  • Loading branch information
jyu115 authored May 7, 2024
1 parent 39c5865 commit 81c121d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/authorization/authorization.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@ export function initialize(
let authInterceptor: number | null = generateJWT
? null
: baseAxiosRequest.interceptors.request.use((config) => {
config.headers.set('Api-Key', authToken);
config.headers.set('Api-Key', authToken);

return config;
});
return config;
});
let userInterceptor: number | null = null;
let responseInterceptor: number | null = null;
/*
Expand Down

0 comments on commit 81c121d

Please sign in to comment.