diff --git a/frontend/src/components/TransactionRows/Name.vue b/frontend/src/components/TransactionRows/Name.vue
index de87c0ad1..8695645d8 100644
--- a/frontend/src/components/TransactionRows/Name.vue
+++ b/frontend/src/components/TransactionRows/Name.vue
@@ -35,7 +35,6 @@ export default {
},
methods: {
tunnelEmail() {
- this.$emit('set-tunneled-email', this.linkedUser.email)
if (this.$router.history.current.fullPath !== '/send') this.$router.push({ path: '/send' })
this.$router.push({ query: { gradidoID: this.linkedUser.gradidoID } })
},
diff --git a/frontend/src/components/Transactions/TransactionReceive.vue b/frontend/src/components/Transactions/TransactionReceive.vue
index 9d6f0207a..1d7c99ff3 100644
--- a/frontend/src/components/Transactions/TransactionReceive.vue
+++ b/frontend/src/components/Transactions/TransactionReceive.vue
@@ -14,7 +14,6 @@
@@ -149,7 +148,6 @@
:transactionLinkCount="transactionLinkCount"
:pending="pending"
@update-transactions="updateTransactions"
- @set-tunneled-email="setTunneledEmail"
>
@@ -164,7 +162,6 @@
:transactions="transactions"
:transactionCount="transactionCount"
:transactionLinkCount="transactionLinkCount"
- @set-tunneled-email="setTunneledEmail"
/>
@@ -234,18 +231,12 @@ export default {
transactionLinkCount: 0,
pending: true,
visible: false,
- tunneledEmail: null,
hamburger: true,
darkMode: false,
skeleton: true,
totalUsers: null,
}
},
- provide() {
- return {
- getTunneledEmail: () => this.tunneledEmail,
- }
- },
created() {
this.updateTransactions(0)
this.getCommunityStatistics()
@@ -319,9 +310,6 @@ export default {
setVisible(bool) {
this.visible = bool
},
- setTunneledEmail(email) {
- this.tunneledEmail = email
- },
},
}
diff --git a/frontend/src/pages/Transactions.vue b/frontend/src/pages/Transactions.vue
index dd7228bf9..95c1c3400 100644
--- a/frontend/src/pages/Transactions.vue
+++ b/frontend/src/pages/Transactions.vue
@@ -17,7 +17,6 @@
:showPagination="true"
:pageSize="pageSize"
@update-transactions="updateTransactions"
- v-on="$listeners"
/>