{
@@ -222,7 +247,7 @@ export const SelectedFiles = (
{/* type of selection */}
-
{selection.selectionStr !== null ? 'Selection' : 'File'}
+
{selection.selectionStr !== null ? 'Selection' : 'File'}
{/* X button */}
{type === 'staging' && // hoveredIdx === i
@@ -241,7 +266,7 @@ export const SelectedFiles = (
{/* selection text */}
{showSelectionText &&
-
+
}
diff --git a/src/vs/workbench/contrib/void/browser/react/src/util/inputs.tsx b/src/vs/workbench/contrib/void/browser/react/src/util/inputs.tsx
index 5995ea78..557d4dca 100644
--- a/src/vs/workbench/contrib/void/browser/react/src/util/inputs.tsx
+++ b/src/vs/workbench/contrib/void/browser/react/src/util/inputs.tsx
@@ -286,6 +286,9 @@ const normalizeIndentation = (code: string): string => {
}
export const VoidCodeEditor = ({ initValue, language }: { initValue: string, language: string | undefined }) => {
+
+ const MAX_HEIGHT = 200;
+
const divRef = useRef