From 18b517730a9d4ebb91588e16290d2e8a96facc6c Mon Sep 17 00:00:00 2001 From: DevTeddy123 Date: Tue, 2 Jul 2024 11:05:43 +0900 Subject: [PATCH] =?UTF-8?q?Fix=20:=20local=20=ED=86=B5=EC=8B=A0=20?= =?UTF-8?q?=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/auth/auth.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;