Skip to content

Commit

Permalink
fix stuck start again button bug on Send page
Browse files Browse the repository at this point in the history
  • Loading branch information
kanatliemre committed Jan 10, 2021
1 parent 11c7c60 commit d15c540
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/views/wallet/Transfer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -305,11 +305,10 @@ export default class Transfer extends Vue {
})
// Update the user's balance
// setTimeout(() => {
await this.$store.dispatch('Assets/updateUTXOs')
await this.$store.dispatch('History/updateTransactionHistory')
this.updateSendAgainLock()
// }, 3000)
this.$store.dispatch('Assets/updateUTXOs').then(() => {
this.updateSendAgainLock()
})
this.$store.dispatch('History/updateTransactionHistory')
}
updateSendAgainLock() {
Expand Down

0 comments on commit d15c540

Please sign in to comment.