From 7e8bab5328f804683904d581cdae90eb07cb5211 Mon Sep 17 00:00:00 2001 From: Which Node Date: Sun, 11 May 2025 20:15:46 -0600 Subject: [PATCH] Fix compare --- web-app/src/modules/core/routes/Account/Account.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web-app/src/modules/core/routes/Account/Account.tsx b/web-app/src/modules/core/routes/Account/Account.tsx index 244f15fe..6d05d509 100644 --- a/web-app/src/modules/core/routes/Account/Account.tsx +++ b/web-app/src/modules/core/routes/Account/Account.tsx @@ -99,7 +99,7 @@ const Account: FC = ({ accountAddress }) => { // Correct balance display for un-migrated V7 slow wallets: // If it's a slow wallet and not initialized then display unlocked as zero and balance as correct, // add a note that account is not initialized - account.initialized && (
Note: this account has not been initialized
) + !account.initialized && (
Note: this account has not been initialized
) }