From 85a385e8d77bd9c729704ecba2d5a217284194d9 Mon Sep 17 00:00:00 2001 From: Juanma Hidalgo Date: Fri, 29 Nov 2024 13:44:13 +0100 Subject: [PATCH] feat: add mainnet label --- src/components/SquidsTable.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/SquidsTable.tsx b/src/components/SquidsTable.tsx index ec6cfb4..b0501be 100644 --- a/src/components/SquidsTable.tsx +++ b/src/components/SquidsTable.tsx @@ -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 => (