Skip to content

Commit

Permalink
refactor: 토큰 재 발급 기능 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
JaeHongDev committed Jul 6, 2024
1 parent 54e2bf7 commit d9691d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/api/auth/ReIssueToken.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ import {END_POINT} from "@/constants/api";


export const reIssueToken = async () => {
const {data} = await axiosInstance.get<AccessTokenResponse>(END_POINT.TOKEN_REISSUE);
const {data} = await axiosInstance.post<AccessTokenResponse>(END_POINT.TOKEN_REISSUE);
return data;
}

0 comments on commit d9691d4

Please sign in to comment.