Fix import order and update fighting game options in ScoreboardPanel

This commit is contained in:
Pandipipas
2026-02-12 01:28:24 +01:00
parent 646a05f7ae
commit e004b00343
@@ -1,7 +1,7 @@
<script setup lang="ts">
import { computed, ref, watch, watchEffect, type Ref } from 'vue';
import type { Schemas } from '../../../types';
import { countryOptions, getCountryLabel } from '../../../shared/countries';
import type { Schemas } from '../../../types';
import { usePlayersStore } from '../stores/players';
import { useScoreboardStore } from '../stores/scoreboard';
@@ -30,7 +30,7 @@ const fightingGameOptions = [
'Mortal Kombat 1',
'The King of Fighters XV',
'Granblue Fantasy Versus: Rising',
'Under Night In-Birth II Sys:Celes',
'2XKO',
].map((game) => ({
label: game,
value: game,