From 8694434269dd00a589463264fc554a4ae3b7a680 Mon Sep 17 00:00:00 2001 From: Estrella Pan Date: Sat, 24 Jan 2026 08:22:54 +0100 Subject: [PATCH] fix(webui): destructure non-reactive steps from setup store directly `steps` is a plain array in the store, not a ref. Using `storeToRefs` returned undefined, causing "Cannot read properties of undefined (reading 'length')" at runtime. Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude Co-Authored-By: Happy --- webui/src/pages/setup.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/webui/src/pages/setup.vue b/webui/src/pages/setup.vue index 9da2b154..a9d5dc55 100644 --- a/webui/src/pages/setup.vue +++ b/webui/src/pages/setup.vue @@ -4,7 +4,8 @@ definePage({ }); const setupStore = useSetupStore(); -const { currentStep, currentStepIndex, steps } = storeToRefs(setupStore); +const { currentStep, currentStepIndex } = storeToRefs(setupStore); +const { steps } = setupStore;