chore: correct reducing

This commit is contained in:
Björn Otgaar
2026-01-07 15:50:45 +01:00
parent 4e07b95722
commit 35ab95bd35
4 changed files with 1 additions and 4 deletions

View File

@@ -27,7 +27,6 @@ export type ActionTypes = "speech" | "gesture" | "llm";
export function PlanReduce(plan?: Plan) {
if (!plan) return ""
return {
name: plan.name,
id: plan.id,
steps: plan.steps.map((x) => StepReduce(x))
}