Skip to content

Commit 5d702f0

Browse files
committed
Removed unnecessary check
1 parent 3bd4b24 commit 5d702f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/output/themes/default/partials/header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export const header = (context: DefaultThemeRenderContext, props: PageEvent<Refl
88
const HeadingLevel = props.model.isProject() ? "h2" : "h1";
99
return (
1010
<div class="tsd-page-title">
11-
{!!props.url && props.url !== "index.html" && props.url !== "hierarchy.html" && (
11+
{props.url !== "index.html" && props.url !== "hierarchy.html" && (
1212
<ul class="tsd-breadcrumb">{context.breadcrumb(props.model)}</ul>
1313
)}
1414
{!props.model.isDocument() && (

0 commit comments

Comments
 (0)