Skip to content

Commit

Permalink
fix: 해커톤 신청시 login navigate수정 완료
Browse files Browse the repository at this point in the history
  • Loading branch information
eastfilmm committed Jul 3, 2024
1 parent 46855bb commit b62cbea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/auth/auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const requestIdtoken = async (
provider: string | undefined,
) => {
return await axiosInstance
.get(`/api/v1/auth/${provider}/idToken/local?code=${authorizationCode}`)
.get(`/api/v1/auth/${provider}/idtoken?code=${authorizationCode}`)
.then(response => {
localStorage.setItem('idtoken', response.data.data.idToken);
return response.data.data.idToken;
Expand Down

0 comments on commit b62cbea

Please sign in to comment.