Skip to content

Commit c219e37

Browse files
[getsentry/action-github-commit] Auto commit
1 parent 8acf895 commit c219e37

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/components/breadcrumbs/index.tsx

+3-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ export function Breadcrumbs({leafNode}: BreadcrumbsProps) {
2222
const to = n.path === '/' ? n.path : `/${n.path}/`;
2323
return (
2424
<li className={styles['breadcrumb-item']} key={n.path}>
25-
<SmartLink to={to}>{n.frontmatter.topLevelAlias ?? n.frontmatter.title}</SmartLink>
25+
<SmartLink to={to}>
26+
{n.frontmatter.topLevelAlias ?? n.frontmatter.title}
27+
</SmartLink>
2628
</li>
2729
);
2830
})}

0 commit comments

Comments
 (0)