diff --git a/frontend/src/components/GddSend/TransactionConfirmationLink.vue b/frontend/src/components/GddSend/TransactionConfirmationLink.vue
index 31ae01cc3..fd2e798eb 100644
--- a/frontend/src/components/GddSend/TransactionConfirmationLink.vue
+++ b/frontend/src/components/GddSend/TransactionConfirmationLink.vue
@@ -60,7 +60,6 @@ export default {
amount: { type: Number, required: true },
memo: { type: String, required: true },
loading: { type: Boolean, required: true },
- selected: { type: String, required: true },
},
}
diff --git a/frontend/src/components/GddSend/TransactionConfirmationSend.vue b/frontend/src/components/GddSend/TransactionConfirmationSend.vue
index 6ac367795..25519f4ed 100644
--- a/frontend/src/components/GddSend/TransactionConfirmationSend.vue
+++ b/frontend/src/components/GddSend/TransactionConfirmationSend.vue
@@ -61,7 +61,7 @@
{{ $t('form.send_now') }}
@@ -77,12 +77,10 @@ export default {
email: { type: String, required: false, default: '' },
amount: { type: Number, required: true },
memo: { type: String, required: true },
- loading: { type: Boolean, required: true },
- selected: { type: String, required: true },
},
data() {
return {
- disabled: this.loading,
+ disabled: false,
}
},
}
diff --git a/frontend/src/pages/Send.vue b/frontend/src/pages/Send.vue
index 270187bec..dd158f2ee 100644
--- a/frontend/src/pages/Send.vue
+++ b/frontend/src/pages/Send.vue
@@ -12,11 +12,9 @@
@@ -24,7 +22,6 @@