From 271a6d270145e8de4a27fe1ced074f7fec2a4bb2 Mon Sep 17 00:00:00 2001 From: renee-png Date: Sun, 7 Jun 2026 15:41:59 -0400 Subject: [PATCH] =?UTF-8?q?Nav:=20add=20Owner=20Ledger=20link=20under=20Fi?= =?UTF-8?q?nance=20=E2=86=92=20Receivables?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Owner Ledger page (/dashboard/owner-ledger) was a route with no menu entry, so it was only reachable by URL. Add it to the Receivables group so staff can reach it (and the new Add Note action). Co-Authored-By: Claude Opus 4.8 --- src/components/dashboard/DashboardTopNav.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/dashboard/DashboardTopNav.tsx b/src/components/dashboard/DashboardTopNav.tsx index 346e48f..7e86b6f 100644 --- a/src/components/dashboard/DashboardTopNav.tsx +++ b/src/components/dashboard/DashboardTopNav.tsx @@ -166,6 +166,7 @@ const megaMenuSections: MegaMenuSection[] = [ { heading: "Receivables", items: [ + { title: "Owner Ledger", url: "/dashboard/owner-ledger", icon: BookOpen }, { title: "Outstanding Balances", url: "/dashboard/outstanding-balances", icon: DollarSign }, { title: "Bulk Charges", url: "/dashboard/bulk-charges", icon: DollarSign }, { title: "Collections", url: "/dashboard/collections", icon: DollarSign },