Skip to content

Commit

Permalink
feat: (#839) 회원 탈퇴 api 주소를 /members/me/delete에서 /auth/members/me/dele…
Browse files Browse the repository at this point in the history
…te로 변경
  • Loading branch information
Gilpop8663 committed Nov 14, 2023
1 parent 867f2f0 commit 7fee8bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/api/userInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export const modifyNickname = async (nickname: string) => {
};

export const withdrawalMembership = async () => {
await deleteFetch(`${BASE_URL}/members/me/delete`);
await deleteFetch(`${BASE_URL}/auth/members/me/delete`);
};

export const updateUserInfo = async (userInfo: UpdateUserInfoRequest) => {
Expand Down

0 comments on commit 7fee8bd

Please sign in to comment.