From ef3c66f887688e3a339cee00a1fc5415500c15f1 Mon Sep 17 00:00:00 2001 From: Jared Miller Date: Wed, 28 Jan 2026 13:03:07 -0500 Subject: [PATCH] Fix exit plan to send option response type Exit plan responses should use type 'option' not 'text' since they're selecting from a predefined set of options. --- public/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/index.html b/public/index.html index f112f86..f58b50a 100644 --- a/public/index.html +++ b/public/index.html @@ -778,7 +778,7 @@ return; } response = { - type: 'text', + type: 'option', value: selected.value, }; }