We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7be455 commit ab9f108Copy full SHA for ab9f108
components/Chat/ChatInput.tsx
@@ -43,7 +43,7 @@ export const ChatInput = ({
43
onScrollDownClick,
44
stopConversationRef,
45
textareaRef,
46
- showScrollDownButton
+ showScrollDownButton,
47
}: Props) => {
48
const { t } = useTranslation('chat');
49
@@ -371,7 +371,7 @@ export const ChatInput = ({
371
372
{isModalVisible && (
373
<VariableModal
374
- prompt={prompts[activePromptIndex]}
+ prompt={filteredPrompts[activePromptIndex]}
375
variables={variables}
376
onSubmit={handleSubmit}
377
onClose={() => setIsModalVisible(false)}
0 commit comments