Skip to content

Commit

Permalink
Fix : local 통신 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
teagu123 committed Jul 2, 2024
1 parent e7d9224 commit 18b5177
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 @@ -8,7 +8,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 18b5177

Please sign in to comment.