From 17ba44182bea296d9893db34efc2809f945f6eb5 Mon Sep 17 00:00:00 2001 From: Jared Miller Date: Wed, 28 Jan 2026 13:02:57 -0500 Subject: [PATCH] Fix option value extraction in prompt rendering Options are objects with value and label fields. Updated exit_plan rendering to use opt.value and opt.label instead of treating opt as a string. --- public/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/index.html b/public/index.html index 72f7d8e..f112f86 100644 --- a/public/index.html +++ b/public/index.html @@ -673,8 +673,8 @@ const optionsHtml = options.map((opt, idx) => ` `).join('');