Skip to content

Commit

Permalink
feat: add mainnet label
Browse files Browse the repository at this point in the history
  • Loading branch information
juanmahidalgo committed Nov 29, 2024
1 parent d747d7b commit 85a385e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/SquidsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ const parseProjectName = (name: string): string =>
const renameNetwork = (network: Network): string => {
const isDev = config.is(Env.DEVELOPMENT)
return network === Network.MATIC
? `POLYGON ${isDev ? "AMOY" : ""}`
: `${network} ${isDev ? "SEPOLIA" : ""}`
? `POLYGON ${isDev ? "AMOY" : "MAINNET"}`
: `${network} ${isDev ? "SEPOLIA" : "MAINNET"}`
}

const renderStatusBadge = (status: string, color: string): JSX.Element => (
Expand Down

0 comments on commit 85a385e

Please sign in to comment.