Merge branch 'release(MVP)' into homologacao

This commit is contained in:
Keven Willian Pereira de Souza 2025-09-17 12:52:42 -03:00
commit 9101dba83c

View file

@ -1,6 +1,7 @@
"use client"
import { ChevronRight, type LucideIcon } from "lucide-react"
import Link from "next/link";
import {
Collapsible,
@ -56,9 +57,9 @@ export function NavMain({
{item.items?.map((subItem) => (
<SidebarMenuSubItem key={subItem.title}>
<SidebarMenuSubButton asChild>
<a href={subItem.url}>
<Link href={subItem.url}>
<span>{subItem.title}</span>
</a>
</Link>
</SidebarMenuSubButton>
</SidebarMenuSubItem>
))}