diff --git a/src/navigation/tabs/contacts/screens/ContactsAdd.tsx b/src/navigation/tabs/contacts/screens/ContactsAdd.tsx index fc771ece8..42fe14b1c 100644 --- a/src/navigation/tabs/contacts/screens/ContactsAdd.tsx +++ b/src/navigation/tabs/contacts/screens/ContactsAdd.tsx @@ -108,7 +108,7 @@ const AddressBadge = styled.View` const DomainBadge = styled.View` position: absolute; - left: 5px; + left: 12px; top: 52%; z-index: 1; `; @@ -479,7 +479,7 @@ const ContactsAdd = ({ }); return; } - + if (addressValue && domainValue) { contact.address = addressValue; contact.domain = domainValue; @@ -721,12 +721,15 @@ const ContactsAdd = ({ <> { + setValidDomain(false); + setDomainValue(undefined); onChange(newValue); processAddressOrDomain({address: newValue}); }} @@ -781,7 +784,7 @@ const ContactsAdd = ({ label={t('DOMAIN')} value={value?.domainName} style={{ - paddingLeft: 30, + paddingLeft: 40, }} /> )}