diff --git a/src/components/confirm_modal/text_confirm.js b/src/components/confirm_modal/text_confirm.js
deleted file mode 100644
index b27bd78f0..000000000
--- a/src/components/confirm_modal/text_confirm.js
+++ /dev/null
@@ -1,41 +0,0 @@
-import ConfirmModal from './confirm_modal.vue'
-//import Select from 'src/components/select/select.vue'
-
-export default {
- props: {
- title: {
- type: String,
- },
- message: {
- type: String,
- },
- cancelText: {
- type: String,
- },
- confirmText: {
- type: String,
- },
- },
- emits: ['hide', 'show', 'action'],
- data: () => ({
- showing: false,
- text: '',
- }),
- components: {
- ConfirmModal,
- },
- methods: {
- show() {
- this.showing = true
- this.$emit('show')
- },
- hide() {
- this.showing = false
- this.$emit('hide')
- },
- doWithText() {
- this.$emit('action', this.text)
- this.hide()
- },
- },
-}
diff --git a/src/components/confirm_modal/text_confirm.vue b/src/components/confirm_modal/text_confirm.vue
deleted file mode 100644
index b4770c686..000000000
--- a/src/components/confirm_modal/text_confirm.vue
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-