From 7aeff80bf9d6896a9793647fba546d9c8bc000d4 Mon Sep 17 00:00:00 2001 From: cc <98377878+hicccc77@users.noreply.github.com> Date: Mon, 13 Apr 2026 19:32:54 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E4=BA=86=E4=B8=80=E5=A4=84?= =?UTF-8?q?=E8=B5=8B=E5=80=BC=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/AccountManagementPage.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/AccountManagementPage.tsx b/src/pages/AccountManagementPage.tsx index 99e022e..e4efdb2 100644 --- a/src/pages/AccountManagementPage.tsx +++ b/src/pages/AccountManagementPage.tsx @@ -164,7 +164,7 @@ function AccountManagementPage() { modifiedTime: Number(scanned.modifiedTime || 0), configUpdatedAt: Number(matchedConfig?.value?.updatedAt || 0), hasConfig: Boolean(matchedConfig), - isCurrent: normalizedCurrent && normalized === normalizedCurrent, + isCurrent: Boolean(normalizedCurrent) && normalized === normalizedCurrent, fromScan: true }) } @@ -189,7 +189,7 @@ function AccountManagementPage() { modifiedTime: 0, configUpdatedAt: Number(matchedConfig.value?.updatedAt || 0), hasConfig: true, - isCurrent: normalizedCurrent && normalized === normalizedCurrent, + isCurrent: Boolean(normalizedCurrent) && normalized === normalizedCurrent, fromScan: false }) }