From 600228eafa42b0566d05439c8f33b1affe5350e3 Mon Sep 17 00:00:00 2001 From: Kasper Seweryn Date: Mon, 23 Jan 2023 12:56:46 +0100 Subject: [PATCH] fix(eslint): remove unused import Part-of: --- front/src/composables/audio/usePlayOptions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/src/composables/audio/usePlayOptions.ts b/front/src/composables/audio/usePlayOptions.ts index e8909c5d0..f7acb363f 100644 --- a/front/src/composables/audio/usePlayOptions.ts +++ b/front/src/composables/audio/usePlayOptions.ts @@ -2,7 +2,7 @@ import type { Track, Artist, Album, Playlist, Library, Channel, Actor } from '~/ import type { ContentFilter } from '~/store/moderation' import { useCurrentElement } from '@vueuse/core' -import { computed, markRaw, nextTick, ref } from 'vue' +import { computed, markRaw, ref } from 'vue' import { i18n } from '~/init/locale' import { useStore } from '~/store'