Separate new requests from request tracking
Magent CI/CD / verify (push) Canceled after 7m35s
Magent CI/CD / deploy-prod (push) Canceled after 0s
Magent CI/CD / deploy-beta (push) Canceled after 0s

This commit is contained in:
2026-08-31 16:02:00 +12:00
parent 8f810e0f36
commit ecf9b230c1
9 changed files with 30 additions and 18 deletions
+8 -4
View File
@@ -75,13 +75,17 @@ export default function HeaderActions() {
]
const commonItems = [
{ href: '/', label: 'Health', match: (path: string) => path === '/' },
{
href: '/',
label: 'My Requests',
match: (path: string) => path === '/' || path.startsWith('/requests/'),
},
...(showRequestsNav
? [
{
href: '/portal/requests',
label: 'Requests',
match: (path: string) => path === '/portal/requests' || path.startsWith('/requests/'),
href: '/new-requests',
label: 'New Requests',
match: (path: string) => path === '/new-requests',
},
]
: []),