From ea957cc0e2da71f0035380b3be943f4e96a18568 Mon Sep 17 00:00:00 2001 From: xiaoxia Date: Thu, 30 Jul 2026 09:22:30 +0800 Subject: [PATCH] fix: correct types import path --- .../components/PipConfigPanel/components/LayerConfig.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/src/pages/editing-planner/components/PipConfigPanel/components/LayerConfig.tsx b/apps/web/src/pages/editing-planner/components/PipConfigPanel/components/LayerConfig.tsx index e37c3bd47..1b3e7aa44 100644 --- a/apps/web/src/pages/editing-planner/components/PipConfigPanel/components/LayerConfig.tsx +++ b/apps/web/src/pages/editing-planner/components/PipConfigPanel/components/LayerConfig.tsx @@ -1,5 +1,5 @@ import React from "react" -import type { PipLayer, PipGridPosition, PipAnimType, PipSlideDirection } from "../types" +import type { PipLayer, PipGridPosition, PipAnimType, PipSlideDirection } from "../../../types" import { GRID_POSITIONS, ANIM_OPTIONS, SLIDE_DIR_OPTIONS } from "../constants" export interface LayerConfigProps { @@ -239,4 +239,4 @@ export const LayerConfig: React.FC = ({ )} ) -} +} \ No newline at end of file