diff --git a/web-app/app/features/imagery/components/AerialList.tsx b/web-app/app/features/imagery/components/AerialList.tsx index 1a6bdfe..07e1d88 100644 --- a/web-app/app/features/imagery/components/AerialList.tsx +++ b/web-app/app/features/imagery/components/AerialList.tsx @@ -4,13 +4,6 @@ import { Section } from '~/shared/components/section/Section'; import { Table } from '~/shared/components/table'; import type { AerialItem } from '../types/aerial'; -const statusColors: Record = { - 대기: 'text-dabeeo-gray-99', - 처리중: 'text-primary', - 완료: 'text-dabeeo-navy-tertiary', - 실패: 'text-red-500', -}; - export function AerialList() { const [selectedId, setSelectedId] = useState(null); const [isLoading, setIsLoading] = useState(false); @@ -46,7 +39,7 @@ export function AerialList() { return (
-

항공영상 데이터 관리

+

항공영상관리

@@ -75,12 +68,12 @@ export function AerialList() { No - 영상명 - 촬영 지역 - 촬영일 - 해상도 - 파일크기(MB) - 상태 + 파일명 + 지역 + 촬영일시 + 축적 + 용량 + 전처리 @@ -103,9 +96,7 @@ export function AerialList() { {item.scale} {item.fileSize} - - {item.status} - + {item.status} )) diff --git a/web-app/app/routes/imagery/aerial/page.tsx b/web-app/app/routes/imagery/aerial/page.tsx index 1c26401..d37a4d6 100644 --- a/web-app/app/routes/imagery/aerial/page.tsx +++ b/web-app/app/routes/imagery/aerial/page.tsx @@ -1,5 +1,7 @@ +import { AerialList } from '~/features/imagery/components/AerialList'; + export default function Page() { return ( -
항공영상관리 목록
+ ); }