Skip to content

Commit 4d6b020

Browse files
committed
fix: imports
1 parent 37d059e commit 4d6b020

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/components/breadcrumbs.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,9 @@ function getBreadcrumbLink(value: StacValue) {
6565

6666
return collectionLink && collectionLink.href !== selfLink?.href ? (
6767
<BreadcrumbLink link={collectionLink} />
68-
) : parentLink && parentLink.href !== rootLink?.href && parentLink.href !== selfLink?.href ? (
68+
) : parentLink &&
69+
parentLink.href !== rootLink?.href &&
70+
parentLink.href !== selfLink?.href ? (
6971
<BreadcrumbLink link={parentLink} />
7072
) : (
7173
rootLink &&

0 commit comments

Comments
 (0)