From 6bf3f27a3c8ff53b16d4a6195798b881e80ac4fe Mon Sep 17 00:00:00 2001 From: Olga Bulat Date: Tue, 3 Dec 2024 07:54:17 +0300 Subject: [PATCH] Lint --- frontend/src/components/VLicense/VLicense.vue | 2 +- frontend/src/composables/use-icon-names.ts | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/frontend/src/components/VLicense/VLicense.vue b/frontend/src/components/VLicense/VLicense.vue index bf2b219ee27..bdac3c98a97 100644 --- a/frontend/src/components/VLicense/VLicense.vue +++ b/frontend/src/components/VLicense/VLicense.vue @@ -7,7 +7,7 @@ import { useI18n } from "#imports" import { computed } from "vue" import type { License } from "#shared/constants/license" -import { getFullLicenseName, getElements } from "#shared/utils/license" +import { getFullLicenseName } from "#shared/utils/license" import { camelCase } from "#shared/utils/case" import { useIconNames } from "~/composables/use-icon-names" diff --git a/frontend/src/composables/use-icon-names.ts b/frontend/src/composables/use-icon-names.ts index c9df17d40a1..b7983b7d494 100644 --- a/frontend/src/composables/use-icon-names.ts +++ b/frontend/src/composables/use-icon-names.ts @@ -1,8 +1,7 @@ -import { getElements } from "#imports" - import { computed, onMounted, ref, watch } from "vue" -import type { License } from "~/constants/license" +import type { License } from "#shared/constants/license" +import { getElements } from "#shared/utils/license" import { useDarkMode } from "~/composables/use-dark-mode" /**