Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
HarelM committed Apr 16, 2024
1 parent 5c2c85a commit 2ada569
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/lib/output/themes/default/partials/navigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ export function sidebarLinks(context: DefaultThemeRenderContext) {
<a href={url}>{label}</a>
))}
{navLinks.map(([label, url]) => (
<a href={url} class="tsd-nav-link">{label}</a>
<a href={url} class="tsd-nav-link">
{label}
</a>
))}
</nav>
);
Expand Down

0 comments on commit 2ada569

Please sign in to comment.