align trade page tab order

This commit is contained in:
saml33 2023-02-10 20:09:42 +11:00
parent 00e08c3b31
commit c79045aaa0
1 changed files with 1 additions and 1 deletions

View File

@ -27,9 +27,9 @@ const TradeInfoTabs = () => {
unsettledPerpPositions?.length unsettledPerpPositions?.length
return [ return [
['balances', 0], ['balances', 0],
['trade:positions', openPerpPositions.length],
['trade:orders', Object.values(openOrders).flat().length], ['trade:orders', Object.values(openOrders).flat().length],
['trade:unsettled', unsettledTradeCount], ['trade:unsettled', unsettledTradeCount],
['trade:positions', openPerpPositions.length],
['trade-history', 0], ['trade-history', 0],
] ]
}, [ }, [