diff --git a/view/components/layout/dashboard-layout.tsx b/view/components/layout/dashboard-layout.tsx index 21fa9edd..4206030d 100644 --- a/view/components/layout/dashboard-layout.tsx +++ b/view/components/layout/dashboard-layout.tsx @@ -83,7 +83,10 @@ export default function DashboardLayout({ children }: { children: React.ReactNod {breadcrumbs.map((breadcrumb, idx) => ( - router.push(breadcrumb.href)}> + router.push(breadcrumb.href)} + className="cursor-pointer" + > {breadcrumb.label} diff --git a/view/components/ui/breadcrumb.tsx b/view/components/ui/breadcrumb.tsx index 9a157a28..1d22aa15 100644 --- a/view/components/ui/breadcrumb.tsx +++ b/view/components/ui/breadcrumb.tsx @@ -43,7 +43,7 @@ function BreadcrumbLink({ return ( );