diff --git a/src/composables/core.js b/src/composables/core.js index 150eac63ee..823799214f 100644 --- a/src/composables/core.js +++ b/src/composables/core.js @@ -1,5 +1,4 @@ -import { getCurrentInstance, ref } from 'vue' -import uniqueId from 'lodash/uniqueId' +import { getCurrentInstance } from 'vue' export function useCore() { // `getCurrentInstance` is a Vue Composition API function that gives us access to the current component instance. diff --git a/src/views/Settings/SettingsViewExtensions.vue b/src/views/Settings/SettingsViewExtensions.vue index 8cbe3ce491..2c76d63272 100644 --- a/src/views/Settings/SettingsViewExtensions.vue +++ b/src/views/Settings/SettingsViewExtensions.vue @@ -3,7 +3,7 @@ * A list of extensions for the frontend. */ -import { computed, onBeforeMount, ref, watch } from 'vue' +import { computed, onBeforeMount, ref } from 'vue' import { uniqueId } from 'lodash' import { useI18n } from 'vue-i18n' import Fuse from 'fuse.js'