Skip to content

Commit

Permalink
chore: Update sidebar.js (#348)
Browse files Browse the repository at this point in the history
  • Loading branch information
doug-wade committed Aug 2, 2023
1 parent ccdf829 commit e4a71b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/website/components/sidebar.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ defineComponent({
const packageLis = PACKAGES.map((pkg) => {
return html`
<li>
<tybalt-link href="/tybalt/pages/${pkg}">@tybalt/${pkg}</tybalt-link>
<tybalt-link href="/pages/${pkg}">@tybalt/${pkg}</tybalt-link>
</li>
`;
});
const guideLis = GUIDES.map((guide) => {
return html`
<li>
<tybalt-link href="/tybalt/pages/${guide}-guide">${guide} guide</tybalt-link>
<tybalt-link href="/pages/${guide}-guide">${guide} guide</tybalt-link>
</li>
`;
});
Expand Down

0 comments on commit e4a71b8

Please sign in to comment.