Add experiment management system

This commit is contained in:
2025-07-18 21:25:27 -04:00
parent 0cc5c8ae89
commit adf0820f32
9 changed files with 1400 additions and 69 deletions

View File

@@ -12,7 +12,8 @@ export default async function ExperimentDesignerPage({
params,
}: ExperimentDesignerPageProps) {
try {
const experiment = await api.experiments.get({ id: params.id });
const resolvedParams = await params;
const experiment = await api.experiments.get({ id: resolvedParams.id });
if (!experiment) {
notFound();