From 7c327684440950520474344a8cccf7e257a8352c Mon Sep 17 00:00:00 2001 From: Akansha Sakhre Date: Mon, 25 Nov 2024 13:35:12 +0530 Subject: [PATCH] removed whats new link --- src/config/menu.ts | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/config/menu.ts b/src/config/menu.ts index fb6f1a6c2..3ca3334d2 100644 --- a/src/config/menu.ts +++ b/src/config/menu.ts @@ -1,5 +1,5 @@ import { organizationHasDynamicRole } from 'common/utils'; -import { ANALYTICS_URL, GLIFIC_DOCS_URL, NEW_UI_BLOG } from 'config'; +import { ANALYTICS_URL, GLIFIC_DOCS_URL } from 'config'; import { getOrganizationServices } from 'services/AuthService'; const allRoles = ['Staff', 'Manager', 'Admin', 'Dynamic', 'Glific_admin']; @@ -279,14 +279,14 @@ const menus = (): Menu[] => [ roles: staffLevel, }, - { - title: "What's new", - path: '/changelog', - url: NEW_UI_BLOG, - icon: 'new', - type: 'sideDrawer', - roles: staffLevel, - }, + // { + // title: "What's new", + // path: '/changelog', + // url: NEW_UI_BLOG, + // icon: 'new', + // type: 'sideDrawer', + // roles: staffLevel, + // }, ]; export const getMenus = (menuType = 'sideDrawer', role = 'Staff') =>