diff --git a/src/api/auth/auth.ts b/src/api/auth/auth.ts index 82a8192..d8934d4 100644 --- a/src/api/auth/auth.ts +++ b/src/api/auth/auth.ts @@ -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;