From a8c75e99111a114d8be077fb52ba08d6fc4bd0b6 Mon Sep 17 00:00:00 2001 From: Kurdistan Tech Ministry Date: Fri, 6 Feb 2026 11:45:46 +0300 Subject: [PATCH] fix: exclude old USDT (asset #3) from Other Assets --- web/src/components/AccountBalance.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/web/src/components/AccountBalance.tsx b/web/src/components/AccountBalance.tsx index 8e22d553..bde93520 100644 --- a/web/src/components/AccountBalance.tsx +++ b/web/src/components/AccountBalance.tsx @@ -242,6 +242,7 @@ export const AccountBalance: React.FC = () => { const excludedAssetIds = [ 1, // PEZ 2, // wHEZ + 3, // Old USDT (deprecated) 1000, // wUSDT (USDT) ]; const assetIdsToCheck = customTokenIds.filter((id) => !excludedAssetIds.includes(id));