Skip to content

Commit

Permalink
fix: 합불 상태 변경 요청 method가 올바르지 않았던 버그 수정 (#222)
Browse files Browse the repository at this point in the history
fix: 합불 상태 변경 요청 method가 올바르지 않았던 버그 수정
  • Loading branch information
geongyu09 authored Sep 19, 2024
2 parents f33fa1d + 2d15baa commit 181babc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion frontend/src/apis/passState/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,7 @@ export const patchApplicantPassState = async ({
afterState,
applicantId,
}: PatchApplicantPassStateParams) => {
await https.post(`/applicants/${applicantId}/state?afterState=${afterState}`);
await https.patch(
`/applicants/${applicantId}/state?afterState=${afterState}`
);
};

0 comments on commit 181babc

Please sign in to comment.