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);