mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-22 15:04:50 +01:00
FIX: Recipient amount text align
This commit is contained in:
parent
deaf5d710a
commit
a45cba0c30
1 changed files with 2 additions and 4 deletions
|
@ -25,7 +25,7 @@ import RNFS from 'react-native-fs';
|
|||
import BigNumber from 'bignumber.js';
|
||||
import * as bitcoin from 'bitcoinjs-lib';
|
||||
|
||||
import { BlueButton, BlueDismissKeyboardInputAccessory, BlueListItem, BlueLoading, BlueText } from '../../BlueComponents';
|
||||
import { BlueButton, BlueDismissKeyboardInputAccessory, BlueListItem, BlueLoading } from '../../BlueComponents';
|
||||
import { navigationStyleTx } from '../../components/navigationStyle';
|
||||
import NetworkTransactionFees, { NetworkTransactionFee } from '../../models/networkTransactionFees';
|
||||
import { BitcoinUnit, Chain } from '../../models/bitcoinUnits';
|
||||
|
@ -1190,9 +1190,7 @@ const SendDetails = () => {
|
|||
launchedBy={name}
|
||||
/>
|
||||
{addresses.length > 1 && (
|
||||
<BlueText style={[styles.of, stylesHook.of]}>
|
||||
{loc.formatString(loc._.of, { number: index + 1, total: addresses.length })}
|
||||
</BlueText>
|
||||
<Text style={[styles.of, stylesHook.of]}>{loc.formatString(loc._.of, { number: index + 1, total: addresses.length })}</Text>
|
||||
)}
|
||||
</View>
|
||||
);
|
||||
|
|
Loading…
Add table
Reference in a new issue