diff --git a/frontend/app/(main)/dashboard/[dashboardId]/page.tsx b/frontend/app/(main)/dashboard/[dashboardId]/page.tsx index 0705d77b..a9271967 100644 --- a/frontend/app/(main)/dashboard/[dashboardId]/page.tsx +++ b/frontend/app/(main)/dashboard/[dashboardId]/page.tsx @@ -101,63 +101,8 @@ export default function DashboardViewPage({ params }: DashboardViewPageProps) { return (
- {/* 대시보드 헤더 */} -
-
-
-

{dashboard.title}

- {dashboard.description &&

{dashboard.description}

} -
- -
- {/* 새로고침 버튼 */} - - - {/* 전체화면 버튼 */} - - - {/* 편집 버튼 */} - -
-
- - {/* 메타 정보 */} -
- 생성: {new Date(dashboard.createdAt).toLocaleString()} - 수정: {new Date(dashboard.updatedAt).toLocaleString()} - 요소: {dashboard.elements.length}개 -
-
- - {/* 대시보드 뷰어 */} -
- -
+ {/* 대시보드 뷰어 - 전체 화면 */} +
); }