Merge branch 'worktree-agent-a7de1005'

This commit is contained in:
2026-04-09 19:31:11 +02:00
5 changed files with 193 additions and 2 deletions
+4 -1
View File
@@ -1,4 +1,5 @@
import dynamic from "next/dynamic";
import { ErrorBoundary } from "~/components/ui/ErrorBoundary.js";
const TimelineView = dynamic(
() => import("~/components/timeline/TimelineView.js").then((m) => m.TimelineView),
@@ -22,7 +23,9 @@ export default function TimelinePage() {
<p className="app-page-subtitle mt-1">Interactive resource planning timeline</p>
</div>
</div>
<TimelineView />
<ErrorBoundary>
<TimelineView />
</ErrorBoundary>
</div>
);
}