Skip to content

Commit

Permalink
hotfix: logout api 마지막 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
eastfilmm committed Jun 8, 2024
1 parent 2db777a commit 1d31547
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/apis/auth/auth.api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export async function logout(): Promise<AuthAPIRequest> {
export async function logout2(): Promise<AuthAPIRequest> {
const refreshToken = localStorage.getItem('refreshToken');
try {
const response = await axios.post(
const response = await axiosClient.post(
`${BASE_URI}/users/signout2`,
{ refreshToken },
{ withCredentials: true }
Expand Down

0 comments on commit 1d31547

Please sign in to comment.