Skip to content

Commit 30fd09a

Browse files
committed
wip
1 parent 230970d commit 30fd09a

File tree

1 file changed

+1
-1
lines changed
  • packages/component-lib/src/components/tableList/assetsTable/components

1 file changed

+1
-1
lines changed

packages/component-lib/src/components/tableList/assetsTable/components/ActionMemo.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ const ActionPopContent = React.memo(
8989
market &&
9090
getMarketArrayListCallback(market).filter((pair) => {
9191
const [first, last] = pair.split('-')
92-
if (first === 'USDT' || last === 'USDT') {
92+
if (['USDT', 'USDC'].includes(first) || ['USDT', 'USDC'].includes(last)) {
9393
return true
9494
}
9595
return first === market

0 commit comments

Comments
 (0)