Remove page numbering from navigation and page links
Magent CI/CD / verify (push) Successful in 10m28s
Magent CI/CD / deploy-prod (push) Skipped
Magent CI/CD / deploy-beta (push) Successful in 1m0s

This commit is contained in:
2026-09-08 16:36:38 +12:00
parent e7e4c9eff3
commit 437836243c
7 changed files with 15 additions and 23 deletions
+1 -2
View File
@@ -108,11 +108,10 @@ export default function HeaderActions() {
return (
<nav className="header-actions" aria-label="Primary">
{items.map((item, index) => {
{items.map((item) => {
const active = item.match(pathname)
return (
<a key={item.href} href={item.href} className={active ? 'is-active' : undefined}>
<span aria-hidden="true">{String(index + 1).padStart(2, '0')}</span>
{item.label}
</a>
)