chore: clean diagnostics and prepare for designer structural refactor (stub legacy useActiveStudy)

This commit is contained in:
2025-08-11 16:38:29 -04:00
parent 524eff89fd
commit 779c639465
33 changed files with 5147 additions and 882 deletions

View File

@@ -1,5 +1,5 @@
import { notFound } from "next/navigation";
import { BlockDesigner } from "~/components/experiments/designer/BlockDesigner";
import { DesignerShell } from "~/components/experiments/designer/DesignerShell";
import type { ExperimentStep } from "~/lib/experiment-designer/types";
import { api } from "~/trpc/server";
@@ -44,7 +44,7 @@ export default async function ExperimentDesignerPage({
: undefined;
return (
<BlockDesigner
<DesignerShell
experimentId={experiment.id}
initialDesign={initialDesign}
/>