diff --git a/vscode/webviews/chat/cells/messageCell/human/editor/HumanMessageEditor.tsx b/vscode/webviews/chat/cells/messageCell/human/editor/HumanMessageEditor.tsx index e4769a35ebf9..169d94d84d00 100644 --- a/vscode/webviews/chat/cells/messageCell/human/editor/HumanMessageEditor.tsx +++ b/vscode/webviews/chat/cells/messageCell/human/editor/HumanMessageEditor.tsx @@ -456,7 +456,6 @@ export const HumanMessageEditor: FunctionComponent<{ ) const Editor = experimentalPromptEditorEnabled ? PromptEditorV2 : PromptEditor - const experimentalOneBoxEnabled = useFeatureFlag(FeatureFlag.CodyExperimentalOneBoxDebug) return ( // biome-ignore lint/a11y/useKeyWithClickEvents: only relevant to click areas @@ -506,7 +505,6 @@ export const HumanMessageEditor: FunctionComponent<{ intent={intent} imageFile={imageFile} setImageFile={setImageFile} - experimentalOneBoxEnabled={experimentalOneBoxEnabled} /> )} diff --git a/vscode/webviews/chat/cells/messageCell/human/editor/toolbar/Toolbar.tsx b/vscode/webviews/chat/cells/messageCell/human/editor/toolbar/Toolbar.tsx index f5c26f5a2c66..bfb7bd9890d4 100644 --- a/vscode/webviews/chat/cells/messageCell/human/editor/toolbar/Toolbar.tsx +++ b/vscode/webviews/chat/cells/messageCell/human/editor/toolbar/Toolbar.tsx @@ -41,7 +41,6 @@ export const Toolbar: FunctionComponent<{ intent?: ChatMessage['intent'] manuallySelectIntent: (intent: ChatMessage['intent']) => void - experimentalOneBoxEnabled?: boolean imageFile?: File setImageFile: (file: File | undefined) => void @@ -58,7 +57,6 @@ export const Toolbar: FunctionComponent<{ models, intent, manuallySelectIntent, - experimentalOneBoxEnabled, imageFile, setImageFile, }) => {