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" /**