From 3781327c58b1a1cfe46bf06dd3128cf2e5b5c5c0 Mon Sep 17 00:00:00 2001 From: MaysWind Date: Sat, 2 Aug 2025 23:53:11 +0800 Subject: [PATCH] hide hidden sub-account --- src/stores/account.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/stores/account.ts b/src/stores/account.ts index 643516f9..66375602 100644 --- a/src/stores/account.ts +++ b/src/stores/account.ts @@ -91,6 +91,11 @@ export const useAccountsStore = defineStore('accounts', () => { if (account.subAccounts) { for (let j = 0; j < account.subAccounts.length; j++) { const subAccount = account.subAccounts[j]; + + if (subAccount.hidden) { + continue; + } + allVisibleAccounts.push(subAccount); } }