mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-22 06:52:41 +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,
|
||||
fromWallet,
|
||||
fromSecret,
|
||||
isLoading: true,
|
||||
isLoading: false,
|
||||
address,
|
||||
memo,
|
||||
fee: 1,
|
||||
|
@ -131,7 +131,7 @@ export default class SendDetails extends Component {
|
|||
fee: response.halfHourFee,
|
||||
networkTransactionFees: response,
|
||||
feeSliderValue: response.halfHourFee,
|
||||
isLoading: typeof this.state.fromWallet === 'object',
|
||||
isLoading: typeof this.state.fromWallet !== 'object',
|
||||
});
|
||||
});
|
||||
if (recommendedFees) {
|
||||
|
@ -139,7 +139,7 @@ export default class SendDetails extends Component {
|
|||
fee: recommendedFees.halfHourFee,
|
||||
networkTransactionFees: recommendedFees,
|
||||
feeSliderValue: recommendedFees.halfHourFee,
|
||||
isLoading: typeof this.state.fromWallet === 'object',
|
||||
isLoading: typeof this.state.fromWallet !== 'object',
|
||||
});
|
||||
|
||||
if (this.props.navigation.state.params.uri) {
|
||||
|
|
Loading…
Add table
Reference in a new issue