diff --git a/web/src/app/app/(primary_layout)/(chat_experience)/chats/[chatId]/dashboards/[dashboardId]/page.tsx b/web/src/app/app/(primary_layout)/(chat_experience)/chats/[chatId]/dashboards/[dashboardId]/page.tsx index 0351bd114..2b955849f 100644 --- a/web/src/app/app/(primary_layout)/(chat_experience)/chats/[chatId]/dashboards/[dashboardId]/page.tsx +++ b/web/src/app/app/(primary_layout)/(chat_experience)/chats/[chatId]/dashboards/[dashboardId]/page.tsx @@ -1,3 +1,4 @@ +import { DashboardController } from '@/controllers/DashboardController'; import { AppAssetCheckLayout } from '@/layouts/AppAssetCheckLayout'; export default async function DashboardPage(props: { params: Promise<{ dashboardId: string }> }) { @@ -7,7 +8,7 @@ export default async function DashboardPage(props: { params: Promise<{ dashboard return ( - <>TODO: Dashboard Page + ); }