diff --git a/components/Orderbook.tsx b/components/Orderbook.tsx index f797879a..61bdf80a 100644 --- a/components/Orderbook.tsx +++ b/components/Orderbook.tsx @@ -418,7 +418,7 @@ const MarkPriceComponent = React.memo<{ markPrice: number }>( {markPrice < previousMarkPrice && ( )} - {markPrice?.toFixed(2) || '----'} + {markPrice || '----'} ) },