diff --git a/src/components/confirm_modal/generic_confirm.js b/src/components/confirm_modal/generic_confirm.js
deleted file mode 100644
index 82bb0e54e..000000000
--- a/src/components/confirm_modal/generic_confirm.js
+++ /dev/null
@@ -1,40 +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,
- }),
- components: {
- ConfirmModal,
- },
- methods: {
- show() {
- this.showing = true
- this.$emit('show')
- },
- hide() {
- this.showing = false
- this.$emit('hide')
- },
- doGeneric() {
- this.$emit('action')
- this.hide()
- },
- },
-}
diff --git a/src/components/confirm_modal/generic_confirm.vue b/src/components/confirm_modal/generic_confirm.vue
deleted file mode 100644
index d223d6ea9..000000000
--- a/src/components/confirm_modal/generic_confirm.vue
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-