Skip to content

Commit

Permalink
Merge pull request #104 from ls1intum/fix/bad-request-when-filtering-…
Browse files Browse the repository at this point in the history
…applications

Remove not used application states
  • Loading branch information
Stephan Krusche authored Jul 21, 2024
2 parents c8c9f7b + 7aa25b7 commit 19f1639
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
5 changes: 0 additions & 5 deletions client/src/interface/application.ts
Original file line number Diff line number Diff line change
@@ -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',
}
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,6 @@ export const ThesisApplicationsDatatable = (): JSX.Element => {
case 'ACCEPTED':
color = 'green'
break
case 'ENROLLED':
color = 'green'
break
case 'REJECTED':
color = 'red'
break
Expand Down

0 comments on commit 19f1639

Please sign in to comment.