diff --git a/client/dive-common/components/AnnotatorWrapper.vue b/client/dive-common/components/AnnotatorWrapper.vue
deleted file mode 100644
index f527276f2..000000000
--- a/client/dive-common/components/AnnotatorWrapper.vue
+++ /dev/null
@@ -1,196 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/client/dive-common/components/ConfidenceFilter.vue b/client/dive-common/components/ConfidenceFilter.vue
index 915d1d899..34596543b 100644
--- a/client/dive-common/components/ConfidenceFilter.vue
+++ b/client/dive-common/components/ConfidenceFilter.vue
@@ -25,9 +25,7 @@ export default defineComponent({
setup(props, { emit }) {
function _updateConfidence(event: InputEvent) {
if (event.target) {
- // eslint-disable-next-line @typescript-eslint/ban-ts-ignore
- // @ts-ignore
- emit('update:confidence', Number.parseFloat(event.target.value));
+ emit('update:confidence', Number.parseFloat((event.target as HTMLInputElement).value));
}
}
function _emitEnd() {
diff --git a/client/dive-common/components/ControlsContainer.vue b/client/dive-common/components/ControlsContainer.vue
index de8921aa0..7470b7664 100644
--- a/client/dive-common/components/ControlsContainer.vue
+++ b/client/dive-common/components/ControlsContainer.vue
@@ -1,16 +1,16 @@