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:
@@ -231,3 +231,5 @@ export function NewDashboardPage() {
|
|||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export default NewDashboardPage;
|
||||||
|
|||||||
Reference in New Issue
Block a user