diff --git a/src/store/helpers/tokenSymbol.ts b/src/store/helpers/tokenSymbol.ts index 0018513b..9fbc782e 100644 --- a/src/store/helpers/tokenSymbol.ts +++ b/src/store/helpers/tokenSymbol.ts @@ -3,5 +3,6 @@ export function getMASSASymbol(symbol: string) { } export function getEVMSymbol(symbol: string) { // removes any ". + alphanumeric " from string + if (symbol === 'WETH.b') return 'ETH'; return symbol.replace(/\.[^.]+$/, ''); }