diff --git a/client/src/interface/application.ts b/client/src/interface/application.ts index 82cd071d..55c15920 100644 --- a/client/src/interface/application.ts +++ b/client/src/interface/application.ts @@ -1,10 +1,5 @@ export enum ApplicationStatus { NOT_ASSESSED = 'Not assessed', - PENDING_INTERVIEW = 'Pending interview', ACCEPTED = 'Accepted', REJECTED = 'Rejected', - ENROLLED = 'Enrolled', - DROPPED_OUT = 'Dropped out', - INTRO_COURSE_PASSED = 'Intro course passed', - INTRO_COURSE_NOT_PASSED = 'Intro course not passed', } diff --git a/client/src/management/components/ThesisApplicationsDatatable.tsx b/client/src/management/components/ThesisApplicationsDatatable.tsx index 5f286dba..8437d840 100644 --- a/client/src/management/components/ThesisApplicationsDatatable.tsx +++ b/client/src/management/components/ThesisApplicationsDatatable.tsx @@ -140,9 +140,6 @@ export const ThesisApplicationsDatatable = (): JSX.Element => { case 'ACCEPTED': color = 'green' break - case 'ENROLLED': - color = 'green' - break case 'REJECTED': color = 'red' break