Fix breadcrumb URL (#10270)

- Missing leading slash
This commit is contained in:
Oliver 2025-09-05 10:59:23 +10:00 committed by GitHub
parent ed04a37838
commit 9dadc2b475
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ export function BreadcrumbList({
return (
<Anchor
key={`${index}-${breadcrumb.name}`}
href={`${baseUrl}${breadcrumb.url}`}
href={`/${baseUrl}${breadcrumb.url}`}
aria-label={`breadcrumb-${index}-${identifierString(
breadcrumb.name
)}`}