diff --git a/apps/dashboard/src/@/components/misc/CustomChainRenderer.tsx b/apps/dashboard/src/@/components/misc/CustomChainRenderer.tsx index fb764c29922..ca63f7bfb66 100644 --- a/apps/dashboard/src/@/components/misc/CustomChainRenderer.tsx +++ b/apps/dashboard/src/@/components/misc/CustomChainRenderer.tsx @@ -3,7 +3,6 @@ import type { ThirdwebClient } from "thirdweb"; import type { UseNetworkSwitcherModalOptions } from "thirdweb/react"; import { Button } from "@/components/ui/button"; import { Spinner } from "@/components/ui/Spinner"; -import { OPSponsoredChains } from "@/constants/chains"; import { useAllChainsData } from "@/hooks/chains/allChains"; import { ChainIconClient } from "@/icons/ChainIcon"; import { cn } from "@/lib/utils"; @@ -32,7 +31,6 @@ export const CustomChainRenderer = ({ const { idToChain } = useAllChainsData(); const storedChain = idToChain.get(chain.id); const isDeprecated = storedChain?.status === "deprecated"; - const isSponsored = OPSponsoredChains.includes(chain.id); return (