Browse Source

ADD: Forgot these files

localNotifications
Marcos Rodriguez Vélez 6 years ago
parent
commit
29f539d3fd
  1. 2
      ios/BlueWallet/Info.plist
  2. 3
      screen/send/details.js
  3. 7
      screen/wallets/transactions.js

2
ios/BlueWallet/Info.plist

@ -34,7 +34,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>161</string>
<string>162</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>LSRequiresIPhoneOS</key>

3
screen/send/details.js

@ -508,7 +508,8 @@ export default class SendDetails extends Component {
onChangeText={text => {
if (!this.processBIP70Invoice(text)) {
this.setState({ address: text.replace(' ', ''), isLoading: false, bip70TransactionExpiration: null });
}}}
}
}}
placeholder={loc.send.details.address}
numberOfLines={1}
value={this.state.address}

7
screen/wallets/transactions.js

@ -232,12 +232,7 @@ export default class WalletTransactions extends Component {
color: '#fff',
}}
>
{loc
.formatBalance(
this.state.wallet.getBalance(),
this.state.wallet.getPreferredBalanceUnit(),
)
.toString()}
{loc.formatBalance(this.state.wallet.getBalance(), this.state.wallet.getPreferredBalanceUnit()).toString()}
</Text>
</TouchableOpacity>
<Text style={{ backgroundColor: 'transparent' }} />

Loading…
Cancel
Save