From 7e5aa52fa935f41de6c62efded5c88cb776b1700 Mon Sep 17 00:00:00 2001 From: eric Date: Sun, 21 Jan 2024 10:34:14 -0600 Subject: [PATCH] removed un used drag-verify component --- src/main.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main.ts b/src/main.ts index 8adadc0fe..a5285836b 100644 --- a/src/main.ts +++ b/src/main.ts @@ -9,7 +9,6 @@ import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome' import FloatingVue from 'floating-vue' import { createPinia } from 'pinia' import { createApp } from 'vue' -import dragVerify from 'vue-drag-verify' import VueVirtualScroller from 'vue-virtual-scroller' import App from './App.vue' @@ -22,6 +21,5 @@ loadFonts() const app = createApp(App) app.component('FontAwesomeIcon', FontAwesomeIcon) -app.component('DragVerify', dragVerify) app.use(router).use(vuetify).use(createPinia()).use(FloatingVue).use(VueVirtualScroller) app.mount('#app')