Skip to content

Commit

Permalink
fix normalizeChain
Browse files Browse the repository at this point in the history
  • Loading branch information
realdealshaman committed Nov 10, 2023
1 parent ca03930 commit ea900c6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/utils/normalizeChain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1171,7 +1171,11 @@ export function getChainDisplayName(
case "mantle":
return "Mantle"
case "linea":
return "Linea"
return "Linea"
case "agoric":
return "Agoric"
case "emoney":
return "eMoney"
default:
return (
normalizedChain.slice(0, 1).toUpperCase() + normalizedChain.slice(1)
Expand Down

0 comments on commit ea900c6

Please sign in to comment.