fix: repeated node address

This commit is contained in:
RadoslavDimchev 2023-12-20 11:56:31 +02:00
parent cd94f7df56
commit 5b6522c6eb
2 changed files with 2 additions and 2 deletions

View File

@ -61,7 +61,7 @@ const AddressAndPortInputs = ({ addressType, portType, isAdvanced }: AddressAndP
</YStack>
<YStack space={'$2'}>
<Text size={13} color={'#647084'} weight={'semibold'}>
{addressType || 'Node'} Address
{addressType} Address
</Text>
<Input placeholder={''} value={address} onChangeText={onAddressChangeHandler} />
</YStack>

View File

@ -38,7 +38,7 @@ const ConnectViaIP = () => {
<AddressPortInputs addressType="Validator Client" portType="VC" />
</>
) : (
<AddressPortInputs addressType="Node Address" portType="VC" isAdvanced={isAdvanced} />
<AddressPortInputs addressType="Node" portType="VC" isAdvanced={isAdvanced} />
)}
<Separator borderColor={'#e3e3e3'} />
<YStack space={'$2'}>