diff --git a/components/MarketNavItem.tsx b/components/MarketNavItem.tsx index 696f3fde..fa006e67 100644 --- a/components/MarketNavItem.tsx +++ b/components/MarketNavItem.tsx @@ -71,7 +71,7 @@ const MarketNavItem: FunctionComponent = ({ : 'text-th-fgd-4' }`} > - {mktInfo ? `${(mktInfo.change24h * 100).toFixed(1)}%` : '?'} + {mktInfo ? `${(mktInfo.change24h * 100).toFixed(1)}%` : ''} diff --git a/components/SwitchMarketDropdown.tsx b/components/SwitchMarketDropdown.tsx index 2c2bee53..1dd0dfb2 100644 --- a/components/SwitchMarketDropdown.tsx +++ b/components/SwitchMarketDropdown.tsx @@ -135,7 +135,7 @@ const SwitchMarketDropdown = () => {

{t('perp')}

- {t('rolling-change')} + {/* {t('rolling-change')} */}

{perpMarkets.map((mkt) => ( @@ -149,7 +149,7 @@ const SwitchMarketDropdown = () => {

{t('spot')}

- {t('rolling-change')} + {/* {t('rolling-change')} */}

{spotMarkets.map((mkt) => ( diff --git a/stores/useMangoStore.tsx b/stores/useMangoStore.tsx index 3d12799a..c9a81b45 100644 --- a/stores/useMangoStore.tsx +++ b/stores/useMangoStore.tsx @@ -533,7 +533,7 @@ const useMangoStore = create((set, get) => { } }) }) - actions.fetchMarketInfo() + // actions.fetchMarketInfo() }) .catch((err) => { if (mangoGroupRetryAttempt < 2) {