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.
This commit is contained in:
Claude
2025-11-07 21:33:18 +00:00
parent a1d2e13bc9
commit c8b7724be3

View File

@@ -231,3 +231,5 @@ export function NewDashboardPage() {
</div>
);
}
export default NewDashboardPage;