Skip to content

Commit

Permalink
fix: [FE] delete URL이 잘못 들어간 부분 해결
Browse files Browse the repository at this point in the history
delete URL이 잘못 들어간 부분 해결
(#140)
  • Loading branch information
d0422 committed Nov 27, 2023
1 parent d3759f9 commit 5cf5dbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontEnd/src/apis/deleteUserCodes.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import AuthRequest from './AuthRequest';

export default async function deleteUserCode(id: string) {
const result = await AuthRequest.delete(`/codes${id}`);
const result = await AuthRequest.delete(`/codes/${id}`);
return result.data;
}

0 comments on commit 5cf5dbf

Please sign in to comment.