From 1b5f97dc9a9e78ef0aaa3ec163ac7f2a6ad64b84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Sat, 7 Mar 2026 17:58:39 +0800 Subject: [PATCH] Remove unnecessary persist:true from acctMgmt store The store only holds transient data (user list refetched from API, hover/menu UI states) that should not survive page reload. Co-Authored-By: Claude Opus 4.6 --- src/stores/acctMgmt.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/stores/acctMgmt.ts b/src/stores/acctMgmt.ts index d66f1c7..ece1312 100644 --- a/src/stores/acctMgmt.ts +++ b/src/stores/acctMgmt.ts @@ -37,7 +37,6 @@ interface EditDetail { } export const useAcctMgmtStore = defineStore('acctMgmtStore', { - persist: true, state: () => ({ allUserAccountList: [] as User[], isAcctMenuOpen: false,