File tree Expand file tree Collapse file tree
app/components/UI/Perps/components/PerpsCompactOrderRow Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ import {
1010 formatPerpsFiat ,
1111 PRICE_RANGES_MINIMAL_VIEW ,
1212} from '../../utils/formatUtils' ;
13- import { DevLogger } from '../../../../../core/SDKConnect/utils/DevLogger' ;
1413import { getPerpsDisplaySymbol , type Order } from '@metamask/perps-controller' ;
1514import { strings } from '../../../../../../locales/i18n' ;
1615import {
@@ -47,16 +46,6 @@ const PerpsCompactOrderRow: React.FC<PerpsCompactOrderRowProps> = ({
4746 const { styles } = useStyles ( styleSheet , { } ) ;
4847
4948 const { priceValue, labelKey } = resolveOrderDisplayPriceAndLabel ( order ) ;
50- DevLogger . log (
51- '[PR-29799] BUG_MARKER: compact order row uses PRICE_RANGES_MINIMAL_VIEW (max 2 decimals) for trigger/limit price' ,
52- {
53- priceValue,
54- formattedWithMinimal :
55- priceValue !== null
56- ? formatPerpsFiat ( priceValue , { ranges : PRICE_RANGES_MINIMAL_VIEW } )
57- : 'null' ,
58- } ,
59- ) ;
6049 const formattedPrice =
6150 priceValue !== null
6251 ? formatPerpsFiat ( priceValue , {
You can’t perform that action at this time.
0 commit comments