Skip to content

Commit

Permalink
feat: (#839) msw 회원 탈퇴 주소 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
Gilpop8663 committed Nov 14, 2023
1 parent 7fee8bd commit a2c9658
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/mocks/userInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const mockUserInfo = [
return res(ctx.status(200), ctx.json({ ok: '닉네임이 성공적으로 수정되었습니다!' }));
}),

rest.delete('/members/me/delete', (req, res, ctx) => {
rest.delete('/auth/members/me/delete', (req, res, ctx) => {
MOCK_USER_INFO.nickname = 'cancel';

return res(ctx.status(204));
Expand Down

0 comments on commit a2c9658

Please sign in to comment.