diff --git a/web/app/[workspaceSlug]/(projects)/sidebar.tsx b/web/app/[workspaceSlug]/(projects)/sidebar.tsx index 77b4889b6b9..b1a9e32fc7c 100644 --- a/web/app/[workspaceSlug]/(projects)/sidebar.tsx +++ b/web/app/[workspaceSlug]/(projects)/sidebar.tsx @@ -62,19 +62,19 @@ export const AppSidebar: FC = observer(() => {


diff --git a/web/core/components/workspace/sidebar/projects-list.tsx b/web/core/components/workspace/sidebar/projects-list.tsx index 578039e2cf8..7abe8738dcb 100644 --- a/web/core/components/workspace/sidebar/projects-list.tsx +++ b/web/core/components/workspace/sidebar/projects-list.tsx @@ -161,7 +161,7 @@ export const SidebarProjectsList: FC = observer(() => { { key: "all", type: "JOINED", - title: "MY PROJECTS", + title: "YOUR PROJECTS", icon: Briefcase, projects: joinedProjects, isOpen: isAllProjectsListOpen, diff --git a/web/core/constants/dashboard.ts b/web/core/constants/dashboard.ts index 907a0ace130..6bf2b1ca6ea 100644 --- a/web/core/constants/dashboard.ts +++ b/web/core/constants/dashboard.ts @@ -310,8 +310,8 @@ export const SIDEBAR_USER_MENU_ITEMS: { Icon: Home, }, { - key: "my-work", - label: "My Work", + key: "your-work", + label: "Your work", href: "/profile", access: EUserWorkspaceRoles.GUEST, highlight: (pathname: string, baseUrl: string) => pathname.includes(`${baseUrl}/profile/`),