From 92d560445e9f0ed5ae4d558fb6ee99207c9d7397 Mon Sep 17 00:00:00 2001 From: empty Date: Tue, 3 Feb 2026 23:54:37 +0800 Subject: [PATCH] fix(admin): add performer and remark fields to programs type --- 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 de05603..0334655 100644 --- a/packages/client-screen/src/stores/admin.ts +++ b/packages/client-screen/src/stores/admin.ts @@ -34,7 +34,7 @@ export const useAdminStore = defineStore('admin', () => { const votingOpen = ref(false); const votingPaused = ref(false); const totalVotes = ref(0); - const programs = ref>([]); + const programs = ref>([]); const allowLateCatch = ref(true); const currentProgramId = ref(null); const awards = ref([]);