From c1841fd58b74dbd8db065d2f7853afbc1e873b46 Mon Sep 17 00:00:00 2001 From: Kevin Ansfield Date: Fri, 18 Jun 2021 09:46:38 +0100 Subject: [PATCH] Removed unused from address confirmation modal component no issue - email send confirmation and instructions are shown inline rather than a modal meaning this component wasn't being used --- .../components/modal-from-address-confirmation.hbs | 12 ------------ .../components/modal-from-address-confirmation.js | 8 -------- 2 files changed, 20 deletions(-) delete mode 100644 ghost/admin/app/components/modal-from-address-confirmation.hbs delete mode 100644 ghost/admin/app/components/modal-from-address-confirmation.js diff --git a/ghost/admin/app/components/modal-from-address-confirmation.hbs b/ghost/admin/app/components/modal-from-address-confirmation.hbs deleted file mode 100644 index 7649e24b5a..0000000000 --- a/ghost/admin/app/components/modal-from-address-confirmation.hbs +++ /dev/null @@ -1,12 +0,0 @@ - -{{svg-jar "close"}} - - - - diff --git a/ghost/admin/app/components/modal-from-address-confirmation.js b/ghost/admin/app/components/modal-from-address-confirmation.js deleted file mode 100644 index 3f004e2062..0000000000 --- a/ghost/admin/app/components/modal-from-address-confirmation.js +++ /dev/null @@ -1,8 +0,0 @@ -import ModalComponent from 'ghost-admin/components/modal-base'; -import {alias} from '@ember/object/computed'; - -export default ModalComponent.extend({ - - confirm() {}, - fromAddress: alias('model.fromAddress') -});