Skip to content

Commit

Permalink
Merge pull request #101 from deverickapollo/dev-refactor-verifyaddress
Browse files Browse the repository at this point in the history
Update submit method so its async
  • Loading branch information
deverickapollo authored Dec 1, 2023
2 parents b43cb47 + e0fa1f4 commit 4c0e6ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/src/components/AdvancedSettingsModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -474,10 +474,10 @@ export default {
Donation
},
methods: {
submit() {
async submit() {
this.showOutgoingConnectionsError = false;
this.showMiningError = false;
const addressVerification = this.isValidAddress(
const addressVerification = await this.isValidAddress(
this.settings.moneroAddress
);
if (!this.isOutgoingConnectionsValid())
Expand Down

0 comments on commit 4c0e6ac

Please sign in to comment.