From eba78978db98ef8bce24cad8264ee58d214f4643 Mon Sep 17 00:00:00 2001 From: xiaoxia Date: Sun, 19 Jul 2026 19:25:05 +0800 Subject: [PATCH] =?UTF-8?q?fix(lint):=20=E5=88=A0=E9=99=A4=E6=9C=AA?= =?UTF-8?q?=E4=BD=BF=E7=94=A8=E7=9A=84import=E5=92=8Cstate=E5=8F=98?= =?UTF-8?q?=E9=87=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/web/src/pages/editing-planner/EditingPlanner.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/apps/web/src/pages/editing-planner/EditingPlanner.tsx b/apps/web/src/pages/editing-planner/EditingPlanner.tsx index dc5e306c3..aea3b768a 100755 --- a/apps/web/src/pages/editing-planner/EditingPlanner.tsx +++ b/apps/web/src/pages/editing-planner/EditingPlanner.tsx @@ -29,8 +29,6 @@ import { getMediaAssets, getEditPlan, getEditPlanClips, - type EditPlanClip, - type CreateEditPlanClipRequest, } from "@/api/editPlans" import { useUndoRedo } from "./hooks/useUndoRedo" import type { @@ -217,7 +215,7 @@ const EditingPlanner: React.FC = () => { } /* ── 剪辑计划(从列表页编辑进入时) ── */ - const [loadedPlanId, setLoadedPlanId] = useState(urlPlanId || null) + const [loadedPlanId] = useState(urlPlanId || null) /* ── 播放 ── */ const [isPlaying, setIsPlaying] = useState(false)