Skip to content

Commit

Permalink
fix links in dropdown (#55)
Browse files Browse the repository at this point in the history
Signed-off-by: Jem Davies <jemsot@gmail.com>
  • Loading branch information
jem-davies committed Jun 18, 2024
1 parent 3f03929 commit 1d22b5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/src/theme/ComponentSelect/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function ComponentSelect(props) {
<ul className={classnames(styles.componentList, "dropdown__menu")}>
{types.map((info) => {
return <li key={info.name}>
<a className="dropdown__link" href={`/docs/components/${type}/${info.name}`}>{info.name}</a>
<a className="dropdown__link" href={`/bento/docs/components/${type}/${info.name}`}>{info.name}</a>
</li>
})}
</ul>
Expand Down

0 comments on commit 1d22b5d

Please sign in to comment.