diff --git a/packages/suite/src/views/wallet/send/Outputs/Amount/TokenSelect.tsx b/packages/suite/src/views/wallet/send/Outputs/Amount/TokenSelect.tsx index b6725fc04f1f..e040feba3f76 100644 --- a/packages/suite/src/views/wallet/send/Outputs/Amount/TokenSelect.tsx +++ b/packages/suite/src/views/wallet/send/Outputs/Amount/TokenSelect.tsx @@ -63,35 +63,37 @@ export const buildTokenOptions = ( }); }); - if (tokens.hiddenWithBalance.length) { - tokens.hiddenWithBalance.forEach(token => { - result.push({ - type: 'currency', - symbol: token.symbol ?? symbol, - networkSymbol: symbol, - hidden: true, - coingeckoId: getCoingeckoId(symbol) ?? '', - contractAddress: token.contract, - cryptoName: token.name, - balance: token.balance, - }); - }); - } + // Right now we dont want to show hidden or unverified tokens, left for the future use - if (tokens.unverifiedWithBalance.length) { - tokens.unverifiedWithBalance.forEach(token => { - result.push({ - type: 'currency', - unverified: true, - symbol: token.symbol ?? symbol, - networkSymbol: symbol, - coingeckoId: getCoingeckoId(symbol) ?? '', - contractAddress: token.contract, - cryptoName: token.name, - balance: token.balance, - }); - }); - } + // if (tokens.hiddenWithBalance.length) { + // tokens.hiddenWithBalance.forEach(token => { + // result.push({ + // type: 'currency', + // symbol: token.symbol ?? symbol, + // networkSymbol: symbol, + // hidden: true, + // coingeckoId: getCoingeckoId(symbol) ?? '', + // contractAddress: token.contract, + // cryptoName: token.name, + // balance: token.balance, + // }); + // }); + // } + + // if (tokens.unverifiedWithBalance.length) { + // tokens.unverifiedWithBalance.forEach(token => { + // result.push({ + // type: 'currency', + // unverified: true, + // symbol: token.symbol ?? symbol, + // networkSymbol: symbol, + // coingeckoId: getCoingeckoId(symbol) ?? '', + // contractAddress: token.contract, + // cryptoName: token.name, + // balance: token.balance, + // }); + // }); + // } } return result; @@ -272,12 +274,18 @@ export const TokenSelect = ({ outputId }: TokenSelectProps) => { - {option.contractAddress && ( + {option.contractAddress && option.cryptoName && ( )}