diff --git a/apps/explorer/src/app/components/markets/market-details.tsx b/apps/explorer/src/app/components/markets/market-details.tsx index 218371b63..3f8c02a00 100644 --- a/apps/explorer/src/app/components/markets/market-details.tsx +++ b/apps/explorer/src/app/components/markets/market-details.tsx @@ -14,7 +14,6 @@ import { SettlementAssetInfoPanel, } from '@vegaprotocol/market-info'; import { MarketInfoTable } from '@vegaprotocol/market-info'; -import { Link } from 'react-router-dom'; export const MarketDetails = ({ market }: { market: MarketInfoWithData }) => { if (!market) return null; @@ -97,22 +96,19 @@ export const MarketDetails = ({ market }: { market: MarketInfoWithData }) => { ), }, { - title: t('Oracle'), + title: t('Settlement Oracle'), content: ( - - - {t('View settlement data oracle specification')} - - - {t('View termination oracle specification')} - - + + ), + }, + { + title: t('Termination Oracle'), + content: ( + ), }, ];