From 1629c88e936257a5b228d03d5e82bd6a8673d998 Mon Sep 17 00:00:00 2001 From: mawkone Date: Mon, 8 Jun 2026 14:23:16 -0700 Subject: [PATCH] design: flatten agency client menu structure, moving granular client controls to dedicated client pages --- app/[workspace]/agency/layout.tsx | 48 ++++++------------------------- 1 file changed, 8 insertions(+), 40 deletions(-) diff --git a/app/[workspace]/agency/layout.tsx b/app/[workspace]/agency/layout.tsx index 2ebe0616..acbcf1e8 100644 --- a/app/[workspace]/agency/layout.tsx +++ b/app/[workspace]/agency/layout.tsx @@ -397,51 +397,19 @@ export default function AgencyLayout({ /> - Delivery (Projects) + Clients {clients.map((client) => { const clientPath = `/${workspace}/agency/client/${client.id}`; const isActive = pathname.startsWith(clientPath); return ( - - - {isActive && ( -
- - - - -
- )} -
+ ); })}