From 5928703d8095a55c5a08ee249239e3f9e4cb12d5 Mon Sep 17 00:00:00 2001 From: empty Date: Wed, 4 Feb 2026 17:35:36 +0800 Subject: [PATCH] fix(client-screen): add 'horse' to musicTrack type MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修复构建错误:musicTrack 类型缺少 'horse' 选项 Co-Authored-By: Claude Opus 4.5 --- packages/client-screen/src/stores/admin.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/client-screen/src/stores/admin.ts b/packages/client-screen/src/stores/admin.ts index 2abd229..cbfe016 100644 --- a/packages/client-screen/src/stores/admin.ts +++ b/packages/client-screen/src/stores/admin.ts @@ -66,7 +66,7 @@ export const useAdminStore = defineStore('admin', () => { // Music State const musicPlaying = ref(false); - const musicTrack = ref<'bgm' | 'lottery' | 'fanfare' | 'award' | 'none'>('none'); + const musicTrack = ref<'bgm' | 'lottery' | 'fanfare' | 'award' | 'horse' | 'none'>('none'); // UI State const pendingAction = ref(null);