Update details.js

This commit is contained in:
marcosrdz 2020-11-22 22:19:46 -05:00
parent 4c886d2b8e
commit f3f0ed8515

View file

@ -1194,7 +1194,13 @@ export default class SendDetails extends Component {
if (this.state.utxo !== null) {
return (
<View style={styles.select}>
<CoinsSelected number={this.state.utxo.length} onClose={() => this.setState({ utxo: null }, this.reCalcTx)} />
<CoinsSelected
number={this.state.utxo.length}
onClose={() => {
LayoutAnimation.configureNext(LayoutAnimation.Presets.easeInEaseOut);
this.setState({ utxo: null }, this.reCalcTx);
}}
/>
</View>
);
}