Co-authored-by: Housein Abo Shaar <76689341+GogoIsProgramming@users.noreply.github.com>
@@ -70,7 +70,7 @@ async function runDashboardTests() {
console.log('Verifying successful login...');
// Wait for dashboard elements to appear with a more robust approach
- const dashboardSelectors = ['h1:has-text("Dashboard")'];
+ const dashboardSelectors = ['h1:has-text("Insights")'];
// Try to wait for any dashboard element to appear
let dashboardElement = null;
@@ -15,7 +15,7 @@ export const Route = createFileRoute(AUTHENTICATED_ROUTE_PREFIX)({
}
},
loader: () => ({
- breadcrumb: 'Dashboard',
+ breadcrumb: 'Insights',
}),
component: AuthLayout,
});
@@ -168,8 +168,8 @@ function DashboardPage() {
}, [layoutWidth, editMode, widgets]);
return (
- <Page pageId="dashboard">
- <PageTitle>Dashboard</PageTitle>
+ <Page pageId="insights">
+ <PageTitle>Insights</PageTitle>
<PageActionBar>
<PageActionBarRight>
<Button variant="outline" onClick={() => setEditMode(prev => !prev)}>
@@ -18,8 +18,8 @@ export function registerDefaults() {
setNavMenuConfig({
sections: [
{
- id: 'dashboard',
- title: 'Dashboard',
+ id: 'insights',
+ title: 'Insights',
placement: 'top',
icon: LayoutDashboardIcon,
url: '/',