Skip to content

Commit

Permalink
chore: rename personal dashboard menu item to dashboard
Browse files Browse the repository at this point in the history
This change updates the title for the personal dashboard menu item to
be just "dashboard"
  • Loading branch information
thomasheartman committed Oct 14, 2024
1 parent d8ddb57 commit ca2e7f3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ export const PrimaryNavigationList: FC<{
{personalDashboardUIEnabled ? (
<DynamicListItem
href='/personal'
text='Personal Dashboard'
text='Dashboard'
onClick={() => onClick('/personal')}
selected={activeItem === '/personal'}
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ exports[`returns all baseRoutes 1`] = `
"mobile": true,
},
"path": "/personal",
"title": "Personal Dashboard",
"title": "Dashboard",
"type": "protected",
},
{
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/component/menu/routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export const routes: IRoute[] = [
// Personal Dashboard
{
path: '/personal',
title: 'Personal Dashboard',
title: 'Dashboard',
component: PersonalDashboard,
type: 'protected',
menu: { mobile: true },
Expand Down

0 comments on commit ca2e7f3

Please sign in to comment.