From c8b7724be31919b493af39c04d17b84ca05afe95 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 7 Nov 2025 21:33:18 +0000 Subject: [PATCH] fix: Add default export to DashboardPage to fix lazy loading The React.lazy import was expecting a default export, but the component was only exported as a named export (NewDashboardPage). This caused the error: "can't convert item to string" Added default export while keeping the named export for compatibility. --- frontend/src/pages/app/DashboardPage.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/pages/app/DashboardPage.tsx b/frontend/src/pages/app/DashboardPage.tsx index 8b75c280..e322a546 100644 --- a/frontend/src/pages/app/DashboardPage.tsx +++ b/frontend/src/pages/app/DashboardPage.tsx @@ -231,3 +231,5 @@ export function NewDashboardPage() { ); } + +export default NewDashboardPage;