Skip to content

Commit

Permalink
fix: 경로를 me로 재설정
Browse files Browse the repository at this point in the history
  • Loading branch information
ChoiWonBeen committed Jul 21, 2023
1 parent dccbcde commit bacb3e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/user/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const getMe = () => userApi.get<User>('/me');

export const withdrawUser = () => userApi.delete<User>('/me');

export const modify = (param: ModifyParams) => userApi.patch<User>('/modify', param);
export const modify = (param: ModifyParams) => userApi.patch<User>('/me', param);

export const sendRegisterEmail = (param: SendRegisterEmailParams) => userApi.post(`/authenticate?email=${param.email}`);

Expand Down

0 comments on commit bacb3e8

Please sign in to comment.