Skip to content

Commit

Permalink
REF: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Overtorment committed May 22, 2019
1 parent 4b8215d commit 430a7c5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
9 changes: 4 additions & 5 deletions BlueComponents.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,12 +147,11 @@ export class LightningButton extends Component {
<View style={{ marginTop: 16, marginLeft: 16, marginBottom: 16 }}>
<Text style={{ color: BlueApp.settings.lnborderColor, fontWeight: 'bold' }}>{loc.wallets.add.lightning}</Text>
</View>
<Image
style={{ width: 34, height: 34, marginRight: 8, marginBottom: 8, justifyContent: 'flex-end', alignSelf: 'flex-end' }}
source={require('./img/addWallet/lightning.png')}
/>
<Image
style={{ width: 34, height: 34, marginRight: 8, marginBottom: 8, justifyContent: 'flex-end', alignSelf: 'flex-end' }}
source={require('./img/addWallet/lightning.png')}
/>
</View>

</TouchableOpacity>
);
}
Expand Down
6 changes: 4 additions & 2 deletions screen/lnd/lndViewInvoice.js
Original file line number Diff line number Diff line change
Expand Up @@ -260,8 +260,10 @@ export default class LNDViewInvoice extends Component {
title={loc.receive.details.share}
/>
<BlueSpacing20 />
<BlueButton style={{
backgroundColor: BlueApp.settings.brandingColor }}
<BlueButton
style={{
backgroundColor: BlueApp.settings.brandingColor,
}}
onPress={() => this.props.navigation.navigate('LNDViewAdditionalInvoiceInformation', { fromWallet: this.state.fromWallet })}
title={loc.lndViewInvoice.additional_info}
/>
Expand Down
4 changes: 2 additions & 2 deletions screen/receive/details.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ export default class ReceiveDetails extends Component {
render() {
return (
<SafeBlueArea style={{ flex: 1 }}>
<View style={{ }}>
<View style={{ marginTop:32, justifyContent: 'center', alignItems: 'center', paddingHorizontal: 16 }}>
<View style={{}}>
<View style={{ marginTop: 32, justifyContent: 'center', alignItems: 'center', paddingHorizontal: 16 }}>
{this.state.bip21encoded === undefined ? (
<BlueLoading />
) : (
Expand Down

0 comments on commit 430a7c5

Please sign in to comment.