From a4b7d360ded69f6bf868c2ad5e4847e7474f211e Mon Sep 17 00:00:00 2001 From: Shine1i Date: Tue, 24 Feb 2026 09:09:56 +0100 Subject: [PATCH] chore: remove unused "Evaluate" navigation item and its icon from navbar --- studio/frontend/src/components/navbar.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/studio/frontend/src/components/navbar.tsx b/studio/frontend/src/components/navbar.tsx index 79e33ab7e6..82f89ed995 100644 --- a/studio/frontend/src/components/navbar.tsx +++ b/studio/frontend/src/components/navbar.tsx @@ -13,7 +13,6 @@ import { import { cn } from "@/lib/utils"; import { AiChat02Icon, - Analytics01Icon, ArrowRight01Icon, Book03Icon, CookBookIcon, @@ -31,7 +30,6 @@ import { TOUR_OPEN_EVENT } from "@/features/tour"; const NAV_ITEMS = [ { label: "Studio", href: "/studio", icon: ZapIcon, enabled: true }, { label: "Recipes", href: "/data-recipes", icon: CookBookIcon, enabled: true }, - { label: "Evaluate", href: "/evaluate", icon: Analytics01Icon, enabled: false }, { label: "Export", href: "/export", icon: PackageIcon, enabled: true }, { label: "Chat", href: "/chat", icon: AiChat02Icon, enabled: true }, ];