From 437651965e8934196f9fb69fb3c088fe3d461744 Mon Sep 17 00:00:00 2001 From: saravanakumardb1 Date: Tue, 10 Mar 2026 17:30:11 -0700 Subject: [PATCH] fix(notes): remove hardcoded sidebar note --- web/src/components/Sidebar.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/web/src/components/Sidebar.tsx b/web/src/components/Sidebar.tsx index 113fba3..db931f1 100644 --- a/web/src/components/Sidebar.tsx +++ b/web/src/components/Sidebar.tsx @@ -2,13 +2,12 @@ import Link from "next/link"; import { usePathname } from "next/navigation"; -import { BookOpenText, House, Search, Settings, Sparkles, FolderKanban, ShieldCheck } from "lucide-react"; +import { House, Search, Settings, Sparkles, FolderKanban, ShieldCheck } from "lucide-react"; import { PRODUCT_NAME } from "@/lib/product-config"; const navItems = [ { href: "/dashboard", label: "Dashboard", icon: House }, { href: "/workspaces", label: "Workspaces", icon: FolderKanban }, - { href: "/notes/note-prd-cutline", label: "Active Note", icon: BookOpenText }, { href: "/reviews", label: "Reviews", icon: ShieldCheck }, { href: "/search", label: "Search", icon: Search }, { href: "/settings", label: "Settings", icon: Settings },