mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-20 02:09:10 +01:00
Merge pull request #3256 from BlueWallet/batchtext
FIX: Recipient amount text align
This commit is contained in:
commit
d0a72f2883
@ -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…
Reference in New Issue
Block a user