Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/portal/src/app/bridge/sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ export const sidebar: SideBar = {
},
{ separator: true },
{
name: "Guides",
isCollapsible: false,
links: [
{
Expand Down Expand Up @@ -76,7 +77,6 @@ export const sidebar: SideBar = {
name: "Custom Data",
},
],
name: "Guides",
},
{ separator: true },
{
Expand Down
4 changes: 2 additions & 2 deletions apps/portal/src/components/others/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -203,15 +203,15 @@ function DocSidebarCategory(props: {
"text-muted-foreground hover:text-foreground",
)}
>
<div className="flex gap-2" ref={triggerRef}>
<div className="flex gap-2 py-1.5 px-3" ref={triggerRef}>
{icon && <SidebarIcon icon={icon} />}
{name}
</div>
</div>
);

const triggerEl = href ? (
<Link className={cn("w-full py-1.5 px-3 text-left")} href={href}>
<Link className={cn("w-full text-left")} href={href}>
{triggerElContent}
</Link>
) : (
Expand Down
Loading