From b3ccb4812b0320a74f75bd9e1f1604cb2b880a12 Mon Sep 17 00:00:00 2001 From: Ryan Wang Date: Mon, 16 Jun 2025 22:26:52 +0800 Subject: [PATCH] chore: fix incorrect imports (#7558) #### What type of PR is this? /area ui /kind cleanup #### What this PR does / why we need it: None #### Does this PR introduce a user-facing change? ```release-note None ``` --- .../modules/contents/pages/components/SinglePageListItem.vue | 2 +- ui/src/layouts/MobileMenu.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/console-src/modules/contents/pages/components/SinglePageListItem.vue b/ui/console-src/modules/contents/pages/components/SinglePageListItem.vue index 3180db352..6d189d835 100644 --- a/ui/console-src/modules/contents/pages/components/SinglePageListItem.vue +++ b/ui/console-src/modules/contents/pages/components/SinglePageListItem.vue @@ -14,8 +14,8 @@ import { VDropdownItem, VEntity, } from "@halo-dev/components"; +import type { EntityFieldItem, OperationItem } from "@halo-dev/console-shared"; import { useQueryClient } from "@tanstack/vue-query"; -import type { EntityFieldItem, OperationItem } from "packages/shared/dist"; import type { Ref } from "vue"; import { computed, inject, markRaw, ref, toRefs } from "vue"; import { useI18n } from "vue-i18n"; diff --git a/ui/src/layouts/MobileMenu.vue b/ui/src/layouts/MobileMenu.vue index f3e701365..aaba43fdb 100644 --- a/ui/src/layouts/MobileMenu.vue +++ b/ui/src/layouts/MobileMenu.vue @@ -1,9 +1,9 @@