diff --git a/src/component/channelSelector/view.js b/src/component/channelSelector/view.js index 1f109ac..ccce9f7 100644 --- a/src/component/channelSelector/view.js +++ b/src/component/channelSelector/view.js @@ -252,11 +252,12 @@ export default class ChannelSelector extends React.PureComponent { underlineColorAndroid={Colors.NextLbryGreen} /> LBC - - {this.state.creditsInputFocused - ? __('Bal: %balance%', { balance: formatCredits(parseFloat(balance), 1, true) }) - : ''} - + + {this.state.creditsInputFocused && } + {this.state.creditsInputFocused && ( + {formatCredits(parseFloat(balance), 1, true)} + )} + {__('This LBC remains yours. It is a deposit to reserve the name and can be undone at any time.')} diff --git a/src/component/walletSend/view.js b/src/component/walletSend/view.js index 17aae7d..a4036cf 100644 --- a/src/component/walletSend/view.js +++ b/src/component/walletSend/view.js @@ -4,6 +4,7 @@ import { formatCredits, regexAddress } from 'lbry-redux'; import { Alert, Clipboard, TextInput, Text, View } from 'react-native'; import Button from 'component/button'; import Colors from 'styles/colors'; +import Icon from 'react-native-vector-icons/FontAwesome5'; import walletStyle from 'styles/wallet'; type DraftTransaction = { @@ -128,11 +129,12 @@ class WalletSend extends React.PureComponent { style={[walletStyle.input, walletStyle.amountInput]} /> LBC - - {this.state.creditsInputFocused - ? __('Bal: %balance%', { balance: formatCredits(parseFloat(balance), 1, true) }) - : ''} - + + {this.state.creditsInputFocused && } + {this.state.creditsInputFocused && ( + {formatCredits(parseFloat(balance), 1, true)} + )} +