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 74900e1 commit 56fe0afCopy full SHA for 56fe0af
src/hooks/useMarketsData.ts
@@ -118,6 +118,7 @@ export const useMarketsData = ({
118
.filter((m) => m.status !== 'FINAL_SETTLEMENT')
119
// temporarily filter out markets with empty/0 oracle price
120
.filter((m) => MustBigNumber(m.oraclePrice).gt(0))
121
+ .filter((a) => !ASSETS_TO_REMOVE.has(a.assetId))
122
.map(getMarketDataFromPerpetualMarketSummary);
123
124
const unlaunchedMarketsData =
0 commit comments