diff --git a/apps/console/src/components/NavMain.tsx b/apps/console/src/components/NavMain.tsx index 9be7b119f..d17dfea23 100644 --- a/apps/console/src/components/NavMain.tsx +++ b/apps/console/src/components/NavMain.tsx @@ -1,6 +1,7 @@ "use client"; import { ChevronRight, type LucideIcon } from "lucide-react"; +import { Link } from "react-router"; import { Collapsible, @@ -41,10 +42,10 @@ export function NavMain({ - + {item.title} - + {item.items?.length ? ( <> @@ -59,9 +60,9 @@ export function NavMain({ {item.items?.map((subItem) => ( - + {subItem.title} - + ))}