Merge pull request #3256 from BlueWallet/batchtext

FIX: Recipient amount text align
This commit is contained in:
GLaDOS 2021-06-06 11:45:56 +01:00 committed by GitHub
commit d0a72f2883
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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>
);