mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-22 23:08:07 +01:00
FIX: Fixed infinite loading
This commit is contained in:
parent
ca203785e6
commit
eaddee91a6
1 changed files with 3 additions and 3 deletions
|
@ -78,7 +78,7 @@ export default class SendDetails extends Component {
|
||||||
fromAddress,
|
fromAddress,
|
||||||
fromWallet,
|
fromWallet,
|
||||||
fromSecret,
|
fromSecret,
|
||||||
isLoading: true,
|
isLoading: false,
|
||||||
address,
|
address,
|
||||||
memo,
|
memo,
|
||||||
fee: 1,
|
fee: 1,
|
||||||
|
@ -131,7 +131,7 @@ export default class SendDetails extends Component {
|
||||||
fee: response.halfHourFee,
|
fee: response.halfHourFee,
|
||||||
networkTransactionFees: response,
|
networkTransactionFees: response,
|
||||||
feeSliderValue: response.halfHourFee,
|
feeSliderValue: response.halfHourFee,
|
||||||
isLoading: typeof this.state.fromWallet === 'object',
|
isLoading: typeof this.state.fromWallet !== 'object',
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
if (recommendedFees) {
|
if (recommendedFees) {
|
||||||
|
@ -139,7 +139,7 @@ export default class SendDetails extends Component {
|
||||||
fee: recommendedFees.halfHourFee,
|
fee: recommendedFees.halfHourFee,
|
||||||
networkTransactionFees: recommendedFees,
|
networkTransactionFees: recommendedFees,
|
||||||
feeSliderValue: recommendedFees.halfHourFee,
|
feeSliderValue: recommendedFees.halfHourFee,
|
||||||
isLoading: typeof this.state.fromWallet === 'object',
|
isLoading: typeof this.state.fromWallet !== 'object',
|
||||||
});
|
});
|
||||||
|
|
||||||
if (this.props.navigation.state.params.uri) {
|
if (this.props.navigation.state.params.uri) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue