Skip to content

Commit

Permalink
fix: small issue with receiver address
Browse files Browse the repository at this point in the history
  • Loading branch information
JackHamer09 committed Jan 3, 2024
1 parent 7aa644d commit 0a9e28d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/common/input/TransactionAddress.vue
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const inputted = computed({
const { isConnected } = storeToRefs(useOnboardStore());
const usingCustomValue = ref(false);
const usingCustomValue = ref(!!inputted.value);
const toggleCustomValue = () => {
usingCustomValue.value = !usingCustomValue.value;
if (usingCustomValue.value) {
Expand Down

0 comments on commit 0a9e28d

Please sign in to comment.