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 <noreply@anthropic.com>
This commit is contained in:
2026-03-07 17:58:39 +08:00
parent 07a2518e76
commit 1b5f97dc9a

View File

@@ -37,7 +37,6 @@ interface EditDetail {
} }
export const useAcctMgmtStore = defineStore('acctMgmtStore', { export const useAcctMgmtStore = defineStore('acctMgmtStore', {
persist: true,
state: () => ({ state: () => ({
allUserAccountList: [] as User[], allUserAccountList: [] as User[],
isAcctMenuOpen: false, isAcctMenuOpen: false,