From 838ead300d5fcbf7f8aa722d4f533ae5f4b3d81a Mon Sep 17 00:00:00 2001 From: JAEMOON Date: Wed, 15 Nov 2023 23:11:32 +0900 Subject: [PATCH] =?UTF-8?q?[feat]=20Editprofile=20->=20=EB=82=B4=EC=9D=BC?= =?UTF-8?q?=20=EC=A2=8B=EC=95=84=EC=9A=94=20<>=20=EC=8B=AB=EC=96=B4?= =?UTF-8?q?=EC=9A=94=20=EC=95=88=EB=90=98=EB=8A=94=20=EB=B6=80=EB=B6=84=20?= =?UTF-8?q?=EC=B2=B4=ED=81=AC!?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/userInfo/editProfile.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/userInfo/editProfile.tsx b/pages/userInfo/editProfile.tsx index 810c2cb..543a4b7 100644 --- a/pages/userInfo/editProfile.tsx +++ b/pages/userInfo/editProfile.tsx @@ -68,7 +68,7 @@ export default function EditProfile({ _imageSrc, userInfo }: ProfileProps) { profileData.gender = buttonState.toUpperCase(); profileData.birthDate = formatDate(data.dateOfBirth, 'yyyymmdd') || profileData.birthDate; const result = await modifyProfile(profileData); - toast('Successfully saved'); + toast.error('Successfully saved'); closeModal(); } catch (error) { console.error('[ERROR] EDIT PROFILE', error);