remove rounding from orderbook markprice

This commit is contained in:
saml33 2021-08-22 13:56:48 +10:00
parent a4da1f6272
commit 287b71a476
1 changed files with 1 additions and 1 deletions

View File

@ -418,7 +418,7 @@ const MarkPriceComponent = React.memo<{ markPrice: number }>(
{markPrice < previousMarkPrice && (
<ArrowDownIcon className={`h-5 w-5 mr-1 text-th-red`} />
)}
{markPrice?.toFixed(2) || '----'}
{markPrice || '----'}
</div>
)
},