diff --git a/packages/ui/src/components/chat/ChatInput.tsx b/packages/ui/src/components/chat/ChatInput.tsx index da009be6..54a2f420 100644 --- a/packages/ui/src/components/chat/ChatInput.tsx +++ b/packages/ui/src/components/chat/ChatInput.tsx @@ -29,7 +29,7 @@ import { useUserMessageHistory } from '@/sync/sync-context'; import { useInlineCommentDraftStore, type InlineCommentDraft } from '@/stores/useInlineCommentDraftStore'; import { appendInlineComments } from '@/lib/messages/inlineComments'; import { renderMagicPrompt } from '@/lib/magicPrompts'; -import { AttachedFilesList } from './FileAttachment'; +import { AttachedFilesList, AttachedVSCodeFileChips, ActiveEditorFileSuggestion } from './FileAttachment'; import { QueuedMessageChips } from './QueuedMessageChips'; import { FileMentionAutocomplete, type FileMentionHandle } from './FileMentionAutocomplete'; import { CommandAutocomplete, type CommandAutocompleteHandle, type CommandInfo } from './CommandAutocomplete'; @@ -3677,95 +3677,101 @@ const ChatInputComponent: React.FC = ({ onOpenSettings, scrollTo : undefined} /> )} -
- {highlightedComposerContent && ( -
+
+ + +
+
+ {highlightedComposerContent && ( +
+ {highlightedComposerContent.map((part, index) => ( + + {part.text} + + ))} +
+ )} +