Skip to content

Commit

Permalink
refactor: 불필요한 console.log 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
semnil5202 committed Sep 13, 2024
1 parent 33db611 commit 3310945
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ export const useModifyUserInfo = ({ options }: Args) => {

async function modifyUserInfo(params: Params): Promise<MeetingMemberResponse> {
const { meetingId, ...restParams } = params;
console.log(restParams);
const data = await Http.PATCH<Params, MeetingMemberResponse>(`/v1/meetings/${meetingId}/members/me`, restParams);
return data;
}

0 comments on commit 3310945

Please sign in to comment.