From 31c2c6fd2a79e52a38a3da4a26300dae91b45c67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9D=B4=EC=98=81=EC=9A=B0?= Date: Wed, 20 Dec 2023 22:07:48 +0900 Subject: [PATCH] =?UTF-8?q?[fix]=20=EA=B0=80=EC=9E=85=20=EC=95=88=EB=90=98?= =?UTF-8?q?=EB=8A=94=20=EC=9D=B4=EC=8A=88=20=EC=88=98=EC=A0=95=20=EB=88=84?= =?UTF-8?q?=EA=B0=80=20=EB=B0=94=EA=BF=A8=EB=8B=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/signup.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/signup.ts b/api/signup.ts index 6e63856..224e819 100644 --- a/api/signup.ts +++ b/api/signup.ts @@ -27,7 +27,7 @@ export const postPassword = async (payload: ProfilePayload) => { export const postProfile = async (payload: ProfilePayload) => { const { firstName, lastName, genderCode, birthDate, description, email } = payload; - return fetchData(`/api/v1/auth/reset-password=${email ? encodeURIComponent(email) : ''}`, { + return fetchData(`/api/v1/auth/profile?email=${email ? encodeURIComponent(email) : ''}`, { method: 'POST', body: JSON.stringify({ firstName,