From f6ad3a1546915441d8779073a014b12ce962102d Mon Sep 17 00:00:00 2001 From: chihlasm Date: Wed, 18 Feb 2026 01:27:59 -0500 Subject: [PATCH] feat: add 'answer' to NodeType union for branch placeholder stubs Co-Authored-By: Claude Sonnet 4.6 --- frontend/src/types/tree.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/types/tree.ts b/frontend/src/types/tree.ts index 1dae8a5a..c9674902 100644 --- a/frontend/src/types/tree.ts +++ b/frontend/src/types/tree.ts @@ -1,7 +1,7 @@ import type { CategoryInfo } from './category' // Tree node types -export type NodeType = 'decision' | 'action' | 'solution' +export type NodeType = 'decision' | 'action' | 'solution' | 'answer' export interface TreeOption { id: string