Skip to content

Commit

Permalink
fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitry Fuks authored and Dmitry Fuks committed Jun 14, 2023
1 parent bf65911 commit eb350e3
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/partials/navigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ export const navigation =

return (
<div class='tree'>
<div class='tree-settings'>{context.settings()}</div>
<div class='tree-config'>
<button
class='tree-config__button tree-config__button--expand js-tree-expand'
Expand Down Expand Up @@ -141,7 +140,7 @@ const Item = (
</a>
<ul>
{item.children.map((subItem) => (
<li class={subItem.cssClasses}>
<li>
<a
class='category__link js-category-link'
href={item.context.urlTo(subItem)}
Expand All @@ -164,7 +163,7 @@ const Item = (
</span>
<ul>
{item.children.map((subItem) => (
<li class={subItem.cssClasses}>
<li>
<a
class='category__link js-category-link'
href={item.context.urlTo(subItem)}
Expand Down

0 comments on commit eb350e3

Please sign in to comment.