diff --git a/web/components/workspace/sidebar-menu.tsx b/web/components/workspace/sidebar-menu.tsx
index 2069d8f27e..2da7cd4067 100644
--- a/web/components/workspace/sidebar-menu.tsx
+++ b/web/components/workspace/sidebar-menu.tsx
@@ -65,7 +65,7 @@ export const WorkspaceSidebarMenu = observer(() => {
})}
/>
}
- {!themeStore?.sidebarCollapsed && link.label}
+
{!themeStore?.sidebarCollapsed && link.label}
{!themeStore?.sidebarCollapsed && link.key === "active-cycles" && (
)}
diff --git a/web/constants/dashboard.ts b/web/constants/dashboard.ts
index 3d99a46795..58985935f8 100644
--- a/web/constants/dashboard.ts
+++ b/web/constants/dashboard.ts
@@ -1,6 +1,6 @@
import { linearGradientDef } from "@nivo/core";
// assets
-import { BarChart2, Briefcase, CheckCircle, LayoutGrid } from "lucide-react";
+import { BarChart2, Briefcase, CheckCircle, Home } from "lucide-react";
import { ContrastIcon } from "@plane/ui";
import { Props } from "components/icons/types";
import CompletedIssuesDark from "public/empty-state/dashboard/dark/completed-issues.svg";
@@ -257,12 +257,12 @@ export const SIDEBAR_MENU_ITEMS: {
Icon: React.FC;
}[] = [
{
- key: "dashboard",
- label: "Dashboard",
+ key: "home",
+ label: "Home",
href: ``,
access: EUserWorkspaceRoles.GUEST,
highlight: (pathname: string, baseUrl: string) => pathname === `${baseUrl}`,
- Icon: LayoutGrid,
+ Icon: Home,
},
{
key: "analytics",