Skip to content

Commit

Permalink
feat: hardcode display of chain name to "mainnet" for "followmain" in…
Browse files Browse the repository at this point in the history
… TestnetRow component
  • Loading branch information
toliaqat committed Sep 20, 2024
1 parent 2525c61 commit 2ee7d4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/TestnetRow.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const TestnetRow = ({ testnet }) => {
<tr>
<td>
<a href={testnet.url} target="_blank" rel="noopener noreferrer">
{testnet.testnetName}
{testnet.testnetName === 'followmain' ? 'mainnet' : testnet.testnetName}
</a>
</td>
<td>
Expand Down

0 comments on commit 2ee7d4e

Please sign in to comment.