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.
This commit is contained in:
Jared Miller 2026-01-28 13:03:07 -05:00
parent 17ba44182b
commit ef3c66f887
Signed by: shmup
GPG key ID: 22B5C6D66A38B06C

View file

@ -778,7 +778,7 @@
return; return;
} }
response = { response = {
type: 'text', type: 'option',
value: selected.value, value: selected.value,
}; };
} }