remove rounding from orderbook markprice
This commit is contained in:
parent
a4da1f6272
commit
287b71a476
|
@ -418,7 +418,7 @@ const MarkPriceComponent = React.memo<{ markPrice: number }>(
|
||||||
{markPrice < previousMarkPrice && (
|
{markPrice < previousMarkPrice && (
|
||||||
<ArrowDownIcon className={`h-5 w-5 mr-1 text-th-red`} />
|
<ArrowDownIcon className={`h-5 w-5 mr-1 text-th-red`} />
|
||||||
)}
|
)}
|
||||||
{markPrice?.toFixed(2) || '----'}
|
{markPrice || '----'}
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue