diff --git a/packages/ui/app/_components/markets/NetworkSelector.tsx b/packages/ui/app/_components/markets/NetworkSelector.tsx index 1910ab0ed..0a1f093c0 100644 --- a/packages/ui/app/_components/markets/NetworkSelector.tsx +++ b/packages/ui/app/_components/markets/NetworkSelector.tsx @@ -21,14 +21,13 @@ interface INetworkSelector { upcomingChains?: string[]; } -const NETWORK_ORDER = [ +const ACTIVE_NETWORKS = [ 'Mode', 'Base', 'Optimism', 'Fraxtal', 'Lisk', 'BoB', - 'Superseed', 'Worldchain' ]; @@ -42,7 +41,7 @@ function NetworkSelector({ const searchParams = useSearchParams(); const setDropChain = useStore((state) => state.setDropChain); - const orderedNetworks = NETWORK_ORDER.map((networkName) => + const orderedNetworks = ACTIVE_NETWORKS.map((networkName) => Object.entries(pools).find(([_, pool]) => pool.name === networkName) ).filter( (entry): entry is [string, any] => diff --git a/packages/ui/app/market/page.tsx b/packages/ui/app/market/page.tsx index 5f63e8138..5547ab42c 100644 --- a/packages/ui/app/market/page.tsx +++ b/packages/ui/app/market/page.tsx @@ -268,6 +268,7 @@ export default function Market() {