fix(admin): add award to musicTrack type

This commit is contained in:
empty
2026-02-04 00:34:41 +08:00
parent bd62dff06a
commit 83bc4da3cc

View File

@@ -65,7 +65,7 @@ export const useAdminStore = defineStore('admin', () => {
// Music State
const musicPlaying = ref(false);
const musicTrack = ref<'bgm' | 'lottery' | 'fanfare' | 'none'>('none');
const musicTrack = ref<'bgm' | 'lottery' | 'fanfare' | 'award' | 'none'>('none');
// UI State
const pendingAction = ref<string | null>(null);