From 9b4c0b77c1f3196a425e636c88e0941961ef9754 Mon Sep 17 00:00:00 2001 From: bot-hermes Date: Wed, 29 Jul 2026 20:23:12 +0000 Subject: [PATCH] 26: domain-specific dashboard - add Suspense wrapper for useSearchParams --- apps/web/app/(dashboard)/dashboard/page.tsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/apps/web/app/(dashboard)/dashboard/page.tsx b/apps/web/app/(dashboard)/dashboard/page.tsx index b0b28db..a8fe1af 100644 --- a/apps/web/app/(dashboard)/dashboard/page.tsx +++ b/apps/web/app/(dashboard)/dashboard/page.tsx @@ -68,7 +68,7 @@ const widgetLabels: Record = { 'quick-capture': 'Quick Capture', }; -export default function DashboardPage() { +function DashboardPage() { const { widgets, setWidgets, addWidget, removeWidget } = useDashboardStore(); const [layoutAnnouncement, setLayoutAnnouncement] = React.useState(''); const [editMode, setEditMode] = React.useState(false); @@ -203,3 +203,10 @@ export default function DashboardPage() { ); } +export default function DashboardPageWrapper() { + return ( + Loading dashboard...}> + + + ); +}