Skip to content

Commit

Permalink
bugfix: android show hex input instapay send (#1222)
Browse files Browse the repository at this point in the history
  • Loading branch information
estebanmino authored Nov 21, 2019
1 parent af3e21c commit f2e84c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/UI/TransactionEdit/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ class TransactionEdit extends PureComponent {
onTouchablePress={this.closeDropdowns}
keyboardShouldPersistTaps={'handled'}
>
<View style={[styles.form, Platform.OS === 'android' && !showHexData ? styles.androidForm : {}]}>
<View style={[styles.form, Platform.OS === 'android' ? styles.androidForm : {}]}>
<View style={[styles.formRow, styles.fromRow]}>
<View style={styles.label}>
<Text style={styles.labelText}>{strings('transaction.from')}:</Text>
Expand Down

0 comments on commit f2e84c2

Please sign in to comment.