From e8f47c23d60c702ba5f31a42fa9aa61fb8201e2c Mon Sep 17 00:00:00 2001 From: xiaoxia Date: Thu, 30 Jul 2026 09:22:04 +0800 Subject: [PATCH] fix: correct types import path --- .../components/StickerPanel/components/StickerList.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/src/pages/editing-planner/components/StickerPanel/components/StickerList.tsx b/apps/web/src/pages/editing-planner/components/StickerPanel/components/StickerList.tsx index 9fc6f6dca..261f94c0d 100644 --- a/apps/web/src/pages/editing-planner/components/StickerPanel/components/StickerList.tsx +++ b/apps/web/src/pages/editing-planner/components/StickerPanel/components/StickerList.tsx @@ -1,5 +1,5 @@ import React from "react" -import type { StickerItem } from "../../types" +import type { StickerItem } from "../../../types" export interface StickerListProps { items: StickerItem[] @@ -54,4 +54,4 @@ export const StickerList: React.FC = ({ ) -} +} \ No newline at end of file