fix(frontend): InfoLayerSection 구 경로 import를 path alias로 수정

- ../../../data/layerData → @common/data/layerData
- ../../../data/layerDatabase → @common/services/layerService
- MR#23 파일 이동 후 서브컴포넌트에 반영 누락된 import 경로 수정

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
htlee 2026-02-28 18:48:19 +09:00
부모 6e0a412729
커밋 79124ad002

파일 보기

@ -1,9 +1,9 @@
import { useState, useMemo } from 'react' import { useState, useMemo } from 'react'
import { LayerTree } from '@common/components/layer/LayerTree' import { LayerTree } from '@common/components/layer/LayerTree'
import { useLayerTree } from '@common/hooks/useLayers' import { useLayerTree } from '@common/hooks/useLayers'
import { layerData } from '../../../data/layerData' import { layerData } from '@common/data/layerData'
import type { LayerNode } from '../../../data/layerData' import type { LayerNode } from '@common/data/layerData'
import type { Layer } from '../../../data/layerDatabase' import type { Layer } from '@common/services/layerService'
interface InfoLayerSectionProps { interface InfoLayerSectionProps {
expanded: boolean expanded: boolean