diff --git a/apps/rowboat/app/lib/types/testing_types.ts b/apps/rowboat/app/lib/types/testing_types.ts index cf5d20ad..289c2447 100644 --- a/apps/rowboat/app/lib/types/testing_types.ts +++ b/apps/rowboat/app/lib/types/testing_types.ts @@ -3,6 +3,7 @@ export const Scenario = z.object({ projectId: z.string(), name: z.string().min(1, "Name cannot be empty"), description: z.string().min(1, "Description cannot be empty"), + criteria: z.string().default(''), context: z.string().default(''), createdAt: z.string().datetime(), lastUpdatedAt: z.string().datetime(), diff --git a/apps/rowboat/app/projects/[projectId]/simulation/app.tsx b/apps/rowboat/app/projects/[projectId]/simulation/app.tsx index 96b8ea28..ed409c2d 100644 --- a/apps/rowboat/app/projects/[projectId]/simulation/app.tsx +++ b/apps/rowboat/app/projects/[projectId]/simulation/app.tsx @@ -224,6 +224,12 @@ const SimulationResultCard = ({ run, results, scenarios }: SimulationResultCardP {scenario.description} +