Skip to content

Commit

Permalink
refactor(front): remove unknown gamemode from frontend
Browse files Browse the repository at this point in the history
Can't fix this up easily lol deal with it
  • Loading branch information
tsa96 committed Nov 19, 2023
1 parent 17d2e83 commit 04e2e03
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ export class MapListComponent implements OnInit {
this.types = [
{ value: undefined, text: 'All' },
...Enum.values(Gamemode)
.filter((status) => status !== Gamemode.UNKNOWN)
.map((status) => ({ value: status, text: GamemodeName.get(status) }))
.sort((a, b) => (a.text > b.text ? 1 : -1))
];
Expand Down

0 comments on commit 04e2e03

Please sign in to comment.