Merge branch 'main' into small-ui-patches

This commit is contained in:
Francisco Arceo 2025-05-15 14:10:12 -06:00 committed by GitHub
commit e9cce9ed38
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
54 changed files with 1825 additions and 760 deletions

View file

@ -45,10 +45,10 @@ export function AppSidebar() {
{logItems.map((item) => (
<SidebarMenuItem key={item.title}>
<SidebarMenuButton asChild>
<a href={item.url}>
<Link href={item.url}>
<item.icon />
<span>{item.title}</span>
</a>
</Link>
</SidebarMenuButton>
</SidebarMenuItem>
))}