diff --git a/packages/neuron-ui/src/components/NetworkSetting/index.tsx b/packages/neuron-ui/src/components/NetworkSetting/index.tsx
index 32a07c7f40..efe73a75ed 100644
--- a/packages/neuron-ui/src/components/NetworkSetting/index.tsx
+++ b/packages/neuron-ui/src/components/NetworkSetting/index.tsx
@@ -1,7 +1,7 @@
import React, { useCallback } from 'react'
import { RouteComponentProps } from 'react-router-dom'
import { useTranslation } from 'react-i18next'
-import { Stack, PrimaryButton, ChoiceGroup, IChoiceGroupOption } from 'office-ui-fabric-react'
+import { Stack, Text, PrimaryButton, ChoiceGroup, IChoiceGroupOption } from 'office-ui-fabric-react'
import { StateWithDispatch } from 'states/stateProvider/reducer'
import chainState from 'states/initStates/chain'
@@ -41,9 +41,19 @@ const NetworkSetting = ({
checked: chain.networkID === network.id,
onRenderLabel: ({ text }: IChoiceGroupOption) => {
return (
-
- {text}
-
+
+
+ {text}
+
+
+ {`(${network.remote})`}
+
+
)
},
})