We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 230970d commit 30fd09aCopy full SHA for 30fd09a
packages/component-lib/src/components/tableList/assetsTable/components/ActionMemo.tsx
@@ -89,7 +89,7 @@ const ActionPopContent = React.memo(
89
market &&
90
getMarketArrayListCallback(market).filter((pair) => {
91
const [first, last] = pair.split('-')
92
- if (first === 'USDT' || last === 'USDT') {
+ if (['USDT', 'USDC'].includes(first) || ['USDT', 'USDC'].includes(last)) {
93
return true
94
}
95
return first === market
0 commit comments