Skip to content

Commit

Permalink
fix: apiClient는 HttpClient의 인스턴스를 그대로 반환
Browse files Browse the repository at this point in the history
axios 인스턴스만 반환하면, code gen에서 생성된 Api Class를 사용하기 어려움
  • Loading branch information
happyGyu committed Jun 29, 2024
1 parent 8195daf commit 5694860
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/apis/api-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ httpClient.instance.interceptors.request.use(
},
);

export const apiClient = httpClient.instance;
export const apiClient = httpClient;

0 comments on commit 5694860

Please # to comment.