From be62662bb1f822b39cf7ceea52917df6b4ba765c Mon Sep 17 00:00:00 2001 From: Prateek Shourya Date: Mon, 22 Jan 2024 15:27:49 +0530 Subject: [PATCH] chore: remove active cycle link from dashboard sidebar. (#3423) --- web/constants/dashboard.ts | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/web/constants/dashboard.ts b/web/constants/dashboard.ts index 89ab0027d..a563b83b0 100644 --- a/web/constants/dashboard.ts +++ b/web/constants/dashboard.ts @@ -18,7 +18,7 @@ import { Props } from "components/icons/types"; // constants import { EUserWorkspaceRoles } from "./workspace"; // icons -import { BarChart2, Briefcase, CheckCircle, LayoutGrid, SendToBack } from "lucide-react"; +import { BarChart2, Briefcase, CheckCircle, LayoutGrid } from "lucide-react"; // gradients for issues by priority widget graph bars export const PRIORITY_GRAPH_GRADIENTS = [ @@ -292,12 +292,4 @@ export const SIDEBAR_MENU_ITEMS: { highlight: (pathname: string, baseUrl: string) => pathname === `${baseUrl}/workspace-views/all-issues`, Icon: CheckCircle, }, - { - key: "active-cycles", - label: "Active cycles", - href: `/active-cycles`, - access: EUserWorkspaceRoles.GUEST, - highlight: (pathname: string, baseUrl: string) => pathname === `${baseUrl}/active-cycles`, - Icon: SendToBack, - }, ];