diff --git a/webui/src/features/dashboard/DashboardPage.tsx b/webui/src/features/dashboard/DashboardPage.tsx index 79499df..eef130b 100644 --- a/webui/src/features/dashboard/DashboardPage.tsx +++ b/webui/src/features/dashboard/DashboardPage.tsx @@ -12,12 +12,10 @@ import { } from "lucide-react"; import { Button, - DismissibleAlert, DocumentationHelpLink, LoadingFrame, MetricCard, - PageScrollViewport, - PageTitle, + PageLayout, dashboardWidgetsForModules, hasAnyScope, hasScope, @@ -443,14 +441,14 @@ export default function DashboardPage({ } return ( - -
-
-
- i18n:govoplan-dashboard.dashboard.3f8b4df2 -

Personal workspace assembled from installed module widgets.

-
-
+ {!configuring && ( <> @@ -489,19 +487,9 @@ export default function DashboardPage({ )} -
-
- - {error && ( - - {error} - - )} - {notice && !error && ( - - {notice} - - )} + + } + >
)} -
- - + ); }