feat(plan): use placeholder for choice question "Other" option (#18101)

This commit is contained in:
Jerop Kipruto
2026-02-02 12:00:13 -05:00
committed by GitHub
parent 381669dce0
commit 9e7c10ad88
6 changed files with 108 additions and 3 deletions
@@ -780,7 +780,7 @@ const ChoiceQuestionView: React.FC<ChoiceQuestionViewProps> = ({
// Render inline text input for custom option
if (optionItem.type === 'other') {
const placeholder = 'Enter a custom value';
const placeholder = question.placeholder || 'Enter a custom value';
return (
<Box flexDirection="row">
{showCheck && (