From 337be6e00b085b19232331d22ea5b531576d643f Mon Sep 17 00:00:00 2001 From: einhornimmond Date: Mon, 17 Jun 2024 11:47:14 +0200 Subject: [PATCH] fix link forwarding after using send with url parameters --- frontend/src/pages/Send.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/pages/Send.vue b/frontend/src/pages/Send.vue index 334d1062d..550c30bf3 100644 --- a/frontend/src/pages/Send.vue +++ b/frontend/src/pages/Send.vue @@ -172,7 +172,7 @@ export default { throw new Error(`undefined transactionData.selected : ${this.transactionData.selected}`) } this.loading = false - this.$router.push('send') + this.$router.push({ path: '/send' }) }, onBack() { this.currentTransactionStep = TRANSACTION_STEPS.transactionForm