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...}> + + + ); +}