diff --git a/apps/trading/components/market-header/market-header.tsx b/apps/trading/components/market-header/market-header.tsx index 563790513..5f1a005e5 100644 --- a/apps/trading/components/market-header/market-header.tsx +++ b/apps/trading/components/market-header/market-header.tsx @@ -5,7 +5,7 @@ import { MarketSelector } from '../../components/market-selector/market-selector import { MarketHeaderStats } from '../../client-pages/market/market-header-stats'; import { useMarket, useMarketList } from '@vegaprotocol/markets'; import { useState } from 'react'; -import { MarketProductPill } from '@vegaprotocol/datagrid'; +import { ProductTypeShortName } from '@vegaprotocol/types'; export const MarketHeader = () => { const { marketId } = useParams(); @@ -28,11 +28,13 @@ export const MarketHeader = () => { {data.tradableInstrument.instrument.code} - + + {' '} + {data.tradableInstrument.instrument.product.__typename && + ProductTypeShortName[ + data.tradableInstrument.instrument.product.__typename + ]}{' '} +