From 15f8ed3ca04b3e77bda37ca7232d59be2cb93fd2 Mon Sep 17 00:00:00 2001 From: ogerly Date: Mon, 14 Mar 2022 10:13:30 +0100 Subject: [PATCH] yarn lint --fix --- frontend/src/components/GddSend.vue | 9 +- .../GddSend/TransactionConfirmation.spec.js | 2 +- .../GddSend/TransactionConfirmation.vue | 108 ------------------ .../components/GddSend/TransactionResult.vue | 80 ------------- frontend/src/pages/Send.vue | 64 +++++++++-- 5 files changed, 61 insertions(+), 202 deletions(-) delete mode 100644 frontend/src/components/GddSend/TransactionConfirmation.vue delete mode 100644 frontend/src/components/GddSend/TransactionResult.vue diff --git a/frontend/src/components/GddSend.vue b/frontend/src/components/GddSend.vue index cfab0899a..7896b6e85 100644 --- a/frontend/src/components/GddSend.vue +++ b/frontend/src/components/GddSend.vue @@ -8,7 +8,14 @@ export default { name: 'GddSend', data() { return { - transactionSteps: ['transaction-form', 'transaction-confirmation', 'transaction-result'], + transactionSteps: [ + 'transaction-form', + 'transaction-confirmation-send', + 'transaction-confirmation-link', + 'transaction-result-send-success', + 'transaction-result-send-error', + 'transaction-result-link', + ], } }, props: { diff --git a/frontend/src/components/GddSend/TransactionConfirmation.spec.js b/frontend/src/components/GddSend/TransactionConfirmation.spec.js index af746b6ff..95c478c73 100644 --- a/frontend/src/components/GddSend/TransactionConfirmation.spec.js +++ b/frontend/src/components/GddSend/TransactionConfirmation.spec.js @@ -1,5 +1,5 @@ import { mount } from '@vue/test-utils' -import TransactionConfirmation from './TransactionConfirmation' +import TransactionConfirmation from './TransactionConfirmationLink' const localVue = global.localVue diff --git a/frontend/src/components/GddSend/TransactionConfirmation.vue b/frontend/src/components/GddSend/TransactionConfirmation.vue deleted file mode 100644 index 71ecc88d7..000000000 --- a/frontend/src/components/GddSend/TransactionConfirmation.vue +++ /dev/null @@ -1,108 +0,0 @@ - - - diff --git a/frontend/src/components/GddSend/TransactionResult.vue b/frontend/src/components/GddSend/TransactionResult.vue deleted file mode 100644 index 479ad7ae8..000000000 --- a/frontend/src/components/GddSend/TransactionResult.vue +++ /dev/null @@ -1,80 +0,0 @@ - - diff --git a/frontend/src/pages/Send.vue b/frontend/src/pages/Send.vue index 2776a0978..9314600c2 100644 --- a/frontend/src/pages/Send.vue +++ b/frontend/src/pages/Send.vue @@ -5,8 +5,8 @@ - - + + +
@@ -33,8 +58,11 @@