Skip to content

Commit

Permalink
fix: temp hide testnets
Browse files Browse the repository at this point in the history
  • Loading branch information
DenSmolonski committed Nov 13, 2024
1 parent 2ad7fb3 commit c52b13a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/common/NetworkSelector/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,9 @@ const NetworkSelector = (props: { onChainSelect?: () => void }): ReactElement =>
>
{prodNets.map((chain) => renderMenuItem(chain.chainId, false))}

<ListSubheader className={css.listSubHeader}>Testnets</ListSubheader>
{/* <ListSubheader className={css.listSubHeader}>Testnets</ListSubheader>
{testNets.map((chain) => renderMenuItem(chain.chainId, false))}
{testNets.map((chain) => renderMenuItem(chain.chainId, false))} */}
</Select>
) : (
<Skeleton width={94} height={31} sx={{ mx: 2 }} />
Expand Down

0 comments on commit c52b13a

Please sign in to comment.