diff --git a/src/app/dashboard/page.tsx b/src/app/dashboard/page.tsx index 657f059..9910292 100644 --- a/src/app/dashboard/page.tsx +++ b/src/app/dashboard/page.tsx @@ -224,7 +224,12 @@ const DashboardPage = () => { ) : widgets.length === 0 ? ( ) : ( -
+
{widgets.map((widget) => ( { + const segments = useSelectedLayoutSegments(); + const isDashboard = segments.includes('dashboard'); + return (
-
{children}
+
+ {children} +
); };