From 1ed82ba174b78f0d82de9590610346c20b619a86 Mon Sep 17 00:00:00 2001 From: Mathew Pareles Date: Wed, 30 Apr 2025 21:31:30 -0700 Subject: [PATCH] dont show propective selections since we have @ to mention --- .../void/browser/react/src/sidebar-tsx/SidebarChat.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vs/workbench/contrib/void/browser/react/src/sidebar-tsx/SidebarChat.tsx b/src/vs/workbench/contrib/void/browser/react/src/sidebar-tsx/SidebarChat.tsx index 5760b2ab..2cba8331 100644 --- a/src/vs/workbench/contrib/void/browser/react/src/sidebar-tsx/SidebarChat.tsx +++ b/src/vs/workbench/contrib/void/browser/react/src/sidebar-tsx/SidebarChat.tsx @@ -292,7 +292,7 @@ export const VoidChatArea: React.FC = ({ className = '', showModelDropdown = true, showSelections = false, - showProspectiveSelections = true, + showProspectiveSelections = false, selections, setSelections, featureName, @@ -2923,7 +2923,7 @@ export const SidebarChat = () => { isStreaming={!!isRunning} isDisabled={isDisabled} showSelections={true} - showProspectiveSelections={previousMessagesHTML.length === 0} + // showProspectiveSelections={previousMessagesHTML.length === 0} selections={selections} setSelections={setSelections} onClickAnywhere={() => { textAreaRef.current?.focus() }}