From 51e863e9c127f1ce3c8fe7953861ac885aa3304b Mon Sep 17 00:00:00 2001 From: Nate Kelley Date: Sat, 22 Mar 2025 22:40:44 -0600 Subject: [PATCH] Update page.tsx --- .../chats/[chatId]/dashboards/[dashboardId]/page.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 + ); }