diff --git a/bridge_ui/src/components/Home/index.tsx b/bridge_ui/src/components/Home/index.tsx index 199ed520..693aa5c0 100644 --- a/bridge_ui/src/components/Home/index.tsx +++ b/bridge_ui/src/components/Home/index.tsx @@ -1,13 +1,11 @@ import { Card, - Chip, Container, Link, makeStyles, Typography, } from "@material-ui/core"; import { Link as RouterLink } from "react-router-dom"; -import polygonLogo from "../../icons/polygon.svg"; import { COLORS } from "../../muiTheme"; import { BETA_CHAINS, CHAINS } from "../../utils/consts"; import HeaderText from "../HeaderText"; @@ -120,23 +118,6 @@ function Home() { ))} -
-
- Polygon - -
- -
Polygon
-
-
diff --git a/bridge_ui/src/utils/consts.ts b/bridge_ui/src/utils/consts.ts index bbe4787b..29dd4184 100644 --- a/bridge_ui/src/utils/consts.ts +++ b/bridge_ui/src/utils/consts.ts @@ -90,8 +90,7 @@ export const CHAINS = logo: terraIcon, }, ]; -export const BETA_CHAINS: ChainId[] = - CLUSTER === "mainnet" ? [CHAIN_ID_POLYGON] : []; +export const BETA_CHAINS: ChainId[] = CLUSTER === "mainnet" ? [] : []; export const CHAINS_WITH_NFT_SUPPORT = CHAINS.filter( ({ id }) => id === CHAIN_ID_BSC ||