diff --git a/apps/desktop/src/renderer/components/Chat/ChatInterface/components/ChatInputFooter/ChatInputFooter.tsx b/apps/desktop/src/renderer/components/Chat/ChatInterface/components/ChatInputFooter/ChatInputFooter.tsx index 14ec71c7380..1cceca08b2e 100644 --- a/apps/desktop/src/renderer/components/Chat/ChatInterface/components/ChatInputFooter/ChatInputFooter.tsx +++ b/apps/desktop/src/renderer/components/Chat/ChatInterface/components/ChatInputFooter/ChatInputFooter.tsx @@ -49,6 +49,7 @@ interface ChatInputFooterProps { pendingQuestion?: { questionId: string; question: string; + description?: string; options?: { label: string; description?: string }[]; } | null; isQuestionSubmitting?: boolean; diff --git a/apps/desktop/src/renderer/components/Chat/ChatInterface/components/ChatInputFooter/components/QuestionInputOverlay/QuestionInputOverlay.tsx b/apps/desktop/src/renderer/components/Chat/ChatInterface/components/ChatInputFooter/components/QuestionInputOverlay/QuestionInputOverlay.tsx index 9064246551b..4af96469d6b 100644 --- a/apps/desktop/src/renderer/components/Chat/ChatInterface/components/ChatInputFooter/components/QuestionInputOverlay/QuestionInputOverlay.tsx +++ b/apps/desktop/src/renderer/components/Chat/ChatInterface/components/ChatInputFooter/components/QuestionInputOverlay/QuestionInputOverlay.tsx @@ -9,6 +9,7 @@ interface QuestionInputOverlayProps { question: { questionId: string; question: string; + description?: string; options?: QuestionOption[]; }; isSubmitting: boolean; @@ -63,9 +64,16 @@ export function QuestionInputOverlay({
{/* Question — pinned header */}
-

- {question.question} -

+
+

+ {question.question} +

+ {question.description && ( +

+ {question.description} +

+ )} +