diff --git a/src/api/mypage.ts b/src/api/mypage.ts index d17f1d25..cda851ab 100644 --- a/src/api/mypage.ts +++ b/src/api/mypage.ts @@ -51,10 +51,7 @@ export const patchUserProfile = async (userData: FormData) => { }; // 3.6 (고용주) 회사 정보 수정하기 -export const patchOwnerProfile = async ( - ownerProfile: EmployerProfileRequest, -) => { - // export const patchOwnerProfile = async (ownerProfile: FormData) => { +export const patchOwnerProfile = async (ownerProfile: FormData) => { const response = await api.patch('/owners', ownerProfile); return response.data; };