Browse Source

Dead code elimination and optimization

localNotifications
Pavel Ševčík 6 years ago
parent
commit
7bc69055bb
  1. 18
      screen/wallets/xpub.js

18
screen/wallets/xpub.js

@ -78,23 +78,11 @@ export default class WalletXpub extends Component {
);
}
/*
<BlueText style={{marginBottom: 10}}>
WIF stands for Wallet Import Format. Backup your WIF (also shown on QR) in a safe place.
</BlueText>
<Divider style={{ backgroundColor: '#ebebeb', marginBottom:20, }} />
*/
return (
<SafeBlueArea style={{ flex: 1, paddingTop: 20 }}>
{(() => {
if (isIpad) {
return <BlueSpacing40 />;
}
})()}
{isIpad && (
<BlueSpacing40 />
)}
<BlueCard style={{ alignItems: 'center', flex: 1 }}>
<View>
<BlueText>{this.state.wallet.getTypeReadable()}</BlueText>

Loading…
Cancel
Save