Skip to content

Commit

Permalink
fix: deposit button not working
Browse files Browse the repository at this point in the history
  • Loading branch information
JackHamer09 committed Dec 21, 2023
1 parent 2e124fd commit e9fa33e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion views/transactions/Deposit.vue
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ const isAddressInputValid = computed(() => {
if (address.value) {
return isAddress(address.value);
}
return false;
return true; // Own address by default
});
watch(address, (_address) => {
queryAddress.value = !_address.length ? undefined : _address;
Expand Down
2 changes: 1 addition & 1 deletion views/transactions/Transfer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ const isAddressInputValid = computed(() => {
return isAddress(address.value);
}
if (props.type === "withdrawal") {
return true;
return true; // Own address by default
}
return false;
});
Expand Down

0 comments on commit e9fa33e

Please sign in to comment.