diff --git a/components/swap/SwapFormTokenList.tsx b/components/swap/SwapFormTokenList.tsx index 70f30c2c..fdf4419e 100644 --- a/components/swap/SwapFormTokenList.tsx +++ b/components/swap/SwapFormTokenList.tsx @@ -156,6 +156,7 @@ const SwapFormTokenList = ({ amountWithBorrow: new Decimal(0), })) .filter((token) => (token.symbol === inputBank?.name ? false : true)) + .sort((a, b) => a.symbol.localeCompare(b.symbol)) return filteredTokens } else { return []