Skip to content

Commit

Permalink
[Fix] fail타입 추가 #1388
Browse files Browse the repository at this point in the history
  • Loading branch information
Sangmin Park authored and Sangmin Park committed Apr 15, 2024
1 parent bc64efb commit ae18c4f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ function RenderTableCells(
status = '면접 시간 발표 전';
} else if (recruit.status === 'INTERVIEW') {
status = '면접 시간 공개';
} else if (recruit.status === 'FAIL') {
status = '불합격';
} else {
status = '심사중';
}
Expand Down
3 changes: 2 additions & 1 deletion types/admin/adminRecruitmentsTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ export interface IrecruitUserTable {
| 'APPLICATION_FAIL'
| 'PROGRESS_DOCS'
| 'INTERVIEW'
| 'PASS';
| 'PASS'
| 'FAIL';
forms: IuserFormResponse[];
}

Expand Down

0 comments on commit ae18c4f

Please sign in to comment.