diff --git a/apps/mobile/src/features/threads/PendingUserInputCard.tsx b/apps/mobile/src/features/threads/PendingUserInputCard.tsx index ddb625f9b219..4b5a93cd1f75 100644 --- a/apps/mobile/src/features/threads/PendingUserInputCard.tsx +++ b/apps/mobile/src/features/threads/PendingUserInputCard.tsx @@ -257,14 +257,16 @@ export function PendingUserInputCard(props: PendingUserInputCardProps) { {question.question} - + {question.options.map((option) => { const selected = isPendingUserInputOptionSelected(draft, option.label); + const description = + option.description !== option.label ? option.description : undefined; return ( - - {option.label} - + + + {option.label} + + {description ? ( + + {description} + + ) : null} + ); })}