diff --git a/packages/mobile/src/core/Send/steps/AddressStep/components/AddressInput/AddressInput.tsx b/packages/mobile/src/core/Send/steps/AddressStep/components/AddressInput/AddressInput.tsx index df6355eaf..8f8abe28d 100644 --- a/packages/mobile/src/core/Send/steps/AddressStep/components/AddressInput/AddressInput.tsx +++ b/packages/mobile/src/core/Send/steps/AddressStep/components/AddressInput/AddressInput.tsx @@ -192,7 +192,9 @@ const AddressInputComponent: FC = (props) => { const preparedAddress = recipient && (recipient.name || recipient.domain) - ? Address.parse(recipient.address, { bounceable: false }).toShort() + ? Address.parse(recipient.address, { + bounceable: Address.isBounceable(recipient.address), + }).toShort() : ''; const isFirstRender = useRef(true); diff --git a/packages/mobile/src/shared/components/ImportWalletForm/ImportWalletForm.style.ts b/packages/mobile/src/shared/components/ImportWalletForm/ImportWalletForm.style.ts index f6dfe39b6..b88bd6431 100644 --- a/packages/mobile/src/shared/components/ImportWalletForm/ImportWalletForm.style.ts +++ b/packages/mobile/src/shared/components/ImportWalletForm/ImportWalletForm.style.ts @@ -17,7 +17,6 @@ export const InputNumber = styled.TextInput.attrs({ })` font-family: ${({ theme }) => theme.font.regular}; font-size: ${ns(16)}px; - line-height: ${ns(24)}px; color: ${({ theme }) => theme.colors.foregroundSecondary}; margin: 0; text-align: right; @@ -32,6 +31,13 @@ export const InputNumber = styled.TextInput.attrs({ ${isAndroid ? 'text-align-vertical: top;' : ''} z-index: 3; position: absolute; + ${() => { + if (isAndroid) { + return ` + line-height: ${ns(24)}px; + `; + } + }} `; export const ButtonWrap = styled.View`