diff --git a/components/admin/recruitments/recruitmentsuser/renderTableCells.tsx b/components/admin/recruitments/recruitmentsuser/renderTableCells.tsx index 474656f89..42401e06d 100644 --- a/components/admin/recruitments/recruitmentsuser/renderTableCells.tsx +++ b/components/admin/recruitments/recruitmentsuser/renderTableCells.tsx @@ -72,6 +72,8 @@ function RenderTableCells( status = '면접 시간 발표 전'; } else if (recruit.status === 'INTERVIEW') { status = '면접 시간 공개'; + } else if (recruit.status === 'FAIL') { + status = '불합격'; } else { status = '심사중'; } diff --git a/types/admin/adminRecruitmentsTypes.ts b/types/admin/adminRecruitmentsTypes.ts index 079c54df1..9905f4a64 100644 --- a/types/admin/adminRecruitmentsTypes.ts +++ b/types/admin/adminRecruitmentsTypes.ts @@ -61,7 +61,8 @@ export interface IrecruitUserTable { | 'APPLICATION_FAIL' | 'PROGRESS_DOCS' | 'INTERVIEW' - | 'PASS'; + | 'PASS' + | 'FAIL'; forms: IuserFormResponse[]; }