From 1309b2fab3ea489482f6cbdeb15fb2a6b4367535 Mon Sep 17 00:00:00 2001 From: Kamran Ahmed Date: Wed, 25 Jun 2025 23:01:37 +0100 Subject: [PATCH] Update answers --- src/components/ContentGenerator/QuestionAnswerChat.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ContentGenerator/QuestionAnswerChat.tsx b/src/components/ContentGenerator/QuestionAnswerChat.tsx index 01cebdb3a..64ee4981e 100644 --- a/src/components/ContentGenerator/QuestionAnswerChat.tsx +++ b/src/components/ContentGenerator/QuestionAnswerChat.tsx @@ -259,7 +259,7 @@ export function QuestionAnswerChat(props: QuestionAnswerChatProps) { value={message} onChange={(e) => setMessage(e.target.value)} className="w-full bg-transparent text-sm focus:outline-none" - placeholder="Type your own answer..." + placeholder={activeMessage.possibleAnswers ? "Type your answer..." : "Or type your own answer..."} autoFocus onKeyDown={(e) => { if (e.key === 'Enter' && !e.shiftKey) {