diff --git a/frontend/src/apis/passState/index.tsx b/frontend/src/apis/passState/index.tsx index 9868a11..9375d43 100644 --- a/frontend/src/apis/passState/index.tsx +++ b/frontend/src/apis/passState/index.tsx @@ -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}` + ); };