From 329a5193f26c18e91d6ac7fc0e74a871a4be8f33 Mon Sep 17 00:00:00 2001 From: Andy Vandervell <92976667+andyvan-ph@users.noreply.github.com> Date: Tue, 21 Jul 2026 10:25:59 +0100 Subject: [PATCH 1/3] feat(nav): reorder Company dropdown to About, Blog, Handbook, Customers Moves Blog and the Handbook submenu above Customers in the top-nav Company dropdown so the list now starts About > Blog > Handbook > Customers, with all subsequent items unchanged. Blog already existed in this menu; this guarantees it sits near the top. Generated-By: PostHog Code Task-Id: 176be19e-c15d-43f0-af0c-164fdfa712c4 --- src/components/TaskBarMenu/menuData.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/components/TaskBarMenu/menuData.tsx b/src/components/TaskBarMenu/menuData.tsx index dd5dd944c24a..309654dc095f 100644 --- a/src/components/TaskBarMenu/menuData.tsx +++ b/src/components/TaskBarMenu/menuData.tsx @@ -490,11 +490,6 @@ export function useMenuData(): MenuType[] { label: 'About', link: '/about', }, - { - type: 'item', - label: 'customers.mdx', - link: '/customers', - }, { type: 'item', label: 'Blog', @@ -507,6 +502,11 @@ export function useMenuData(): MenuType[] { items: processHandbookSidebar(handbookSidebar), mobileDestination: '/handbook', }, + { + type: 'item', + label: 'customers.mdx', + link: '/customers', + }, { type: 'item', label: 'Roadmap', From 57fc0fa465e14aef73172610295680ad040948b0 Mon Sep 17 00:00:00 2001 From: Andy Vandervell <92976667+andyvan-ph@users.noreply.github.com> Date: Tue, 21 Jul 2026 10:52:36 +0100 Subject: [PATCH 2/3] Apply suggestions from code review Co-authored-by: Andy Vandervell <92976667+andyvan-ph@users.noreply.github.com> --- src/components/TaskBarMenu/menuData.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/TaskBarMenu/menuData.tsx b/src/components/TaskBarMenu/menuData.tsx index 8a7c088ae1e1..63578aa39bd9 100644 --- a/src/components/TaskBarMenu/menuData.tsx +++ b/src/components/TaskBarMenu/menuData.tsx @@ -403,7 +403,7 @@ export function useMenuData(): MenuType[] { }, { type: 'item', - label: 'customers.mdx', + label: 'Customers', link: '/customers', }, { From 4516725fc337d9582c034afbf56824485781e1ec Mon Sep 17 00:00:00 2001 From: Andy Vandervell <92976667+andyvan-ph@users.noreply.github.com> Date: Tue, 21 Jul 2026 11:48:53 +0100 Subject: [PATCH 3/3] Update menuData.tsx --- src/components/TaskBarMenu/menuData.tsx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/components/TaskBarMenu/menuData.tsx b/src/components/TaskBarMenu/menuData.tsx index 63578aa39bd9..996317fca988 100644 --- a/src/components/TaskBarMenu/menuData.tsx +++ b/src/components/TaskBarMenu/menuData.tsx @@ -411,11 +411,6 @@ export function useMenuData(): MenuType[] { label: 'Roadmap', link: '/roadmap', }, - { - type: 'item', - label: 'WIP', - link: '/wip', - }, { type: 'item', label: 'Changelog',