show chain id only if available

pull/5370/head
Aniket-Engg 2 years ago committed by Aniket
parent ef4edee9df
commit c88b96f98f
  1. 2
      apps/etherscan/src/app/views/VerifyView.tsx

@ -38,7 +38,7 @@ export const VerifyView: React.FC<Props> = ({
useEffect(() => {
if (client && client.on) {
client.on("blockchain" as any, 'networkStatus', (result) => {
setNetworkName(`${result.network.name} (Chain id: ${result.network.id})`)
setNetworkName(`${result.network.name} ${result.network.id !== ' - ' ? `(Chain id: ${result.network.id})` : ''}`)
})
}
return () => {

Loading…
Cancel
Save