diff --git a/ui/CHANGELOG.md b/ui/CHANGELOG.md index b99eabf12b..b419cec6c5 100644 --- a/ui/CHANGELOG.md +++ b/ui/CHANGELOG.md @@ -13,6 +13,7 @@ All notable changes to the **Prowler UI** are documented in this file. - Rename `Memberships` to `Organization` in the sidebar [(#8415)](https://github.com/prowler-cloud/prowler/pull/8415) - Removed `Browse all resources` from the sidebar, sidebar now shows a single `Resources` entry [(#8418)](https://github.com/prowler-cloud/prowler/pull/8418) +- Removed `Misconfigurations` from the `Top Failed Findings` section in the sidebar [(#8426)](https://github.com/prowler-cloud/prowler/pull/8426) ___ ## [v1.9.3] (Prowler v5.9.3) diff --git a/ui/lib/menu-list.ts b/ui/lib/menu-list.ts index 3b0b54ef4c..237540ff2d 100644 --- a/ui/lib/menu-list.ts +++ b/ui/lib/menu-list.ts @@ -1,7 +1,6 @@ "use client"; import { - AlertCircle, Bookmark, CloudCog, Cog, @@ -79,11 +78,6 @@ export const getMenuList = (pathname: string): GroupProps[] => { label: "Top failed findings", icon: Bookmark, submenus: [ - { - href: "/findings?filter[status__in]=FAIL&sort=severity,-inserted_at", - label: "Misconfigurations", - icon: AlertCircle, - }, { href: "/findings?filter[status__in]=FAIL&filter[severity__in]=critical%2Chigh%2Cmedium&filter[provider_type__in]=aws%2Cazure%2Cgcp%2Ckubernetes&filter[service__in]=iam%2Crbac&sort=-inserted_at", label: "IAM Issues",