From 79124ad00294ee2b79b6fd801affada71186f1f4 Mon Sep 17 00:00:00 2001 From: htlee Date: Sat, 28 Feb 2026 18:48:19 +0900 Subject: [PATCH] =?UTF-8?q?fix(frontend):=20InfoLayerSection=20=EA=B5=AC?= =?UTF-8?q?=20=EA=B2=BD=EB=A1=9C=20import=EB=A5=BC=20path=20alias=EB=A1=9C?= =?UTF-8?q?=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - ../../../data/layerData → @common/data/layerData - ../../../data/layerDatabase → @common/services/layerService - MR#23 파일 이동 후 서브컴포넌트에 반영 누락된 import 경로 수정 Co-Authored-By: Claude Opus 4.6 --- .../src/tabs/prediction/components/InfoLayerSection.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/tabs/prediction/components/InfoLayerSection.tsx b/frontend/src/tabs/prediction/components/InfoLayerSection.tsx index 61fd98b..3e45dd7 100644 --- a/frontend/src/tabs/prediction/components/InfoLayerSection.tsx +++ b/frontend/src/tabs/prediction/components/InfoLayerSection.tsx @@ -1,9 +1,9 @@ import { useState, useMemo } from 'react' import { LayerTree } from '@common/components/layer/LayerTree' import { useLayerTree } from '@common/hooks/useLayers' -import { layerData } from '../../../data/layerData' -import type { LayerNode } from '../../../data/layerData' -import type { Layer } from '../../../data/layerDatabase' +import { layerData } from '@common/data/layerData' +import type { LayerNode } from '@common/data/layerData' +import type { Layer } from '@common/services/layerService' interface InfoLayerSectionProps { expanded: boolean