Skip to content

Commit 6182e67

Browse files
committed
Remove some comments
1 parent 29651c3 commit 6182e67

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

webview-ui/src/components/settings/SettingsView.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,7 @@ import { LanguageSettings } from "./LanguageSettings"
6363
import { About } from "./About"
6464
import { Section } from "./Section"
6565
import { cn } from "@/lib/utils"
66-
// Removed: import { settingsTabsContainer, settingsTabList, settingsTabTrigger, settingsTabTriggerActive } from "./styles"
6766

68-
// Inserted settings* definitions (originally lines 87-96 from styles.ts)
6967
export const settingsTabsContainer = "flex flex-1 overflow-hidden [&.narrow_.tab-label]:hidden"
7068
export const settingsTabList =
7169
"w-48 data-[compact=true]:w-12 flex-shrink-0 flex flex-col overflow-y-auto overflow-x-hidden border-r border-vscode-sideBar-background"
@@ -263,7 +261,7 @@ const SettingsView = forwardRef<SettingsViewRef, SettingsViewProps>(({ onDone, t
263261
vscode.postMessage({ type: "screenshotQuality", value: screenshotQuality ?? 75 })
264262
vscode.postMessage({ type: "terminalOutputLineLimit", value: terminalOutputLineLimit ?? 500 })
265263
vscode.postMessage({ type: "terminalShellIntegrationTimeout", value: terminalShellIntegrationTimeout })
266-
vscode.postMessage({ type: "terminalShellIntegrationDisabled", bool: terminalShellIntegrationDisabled }) // Added from upstream
264+
vscode.postMessage({ type: "terminalShellIntegrationDisabled", bool: terminalShellIntegrationDisabled })
267265
vscode.postMessage({ type: "terminalCommandDelay", value: terminalCommandDelay })
268266
vscode.postMessage({ type: "terminalPowershellCounter", bool: terminalPowershellCounter })
269267
vscode.postMessage({ type: "terminalZshClearEolMark", bool: terminalZshClearEolMark })
@@ -614,7 +612,7 @@ const SettingsView = forwardRef<SettingsViewRef, SettingsViewProps>(({ onDone, t
614612
<TerminalSettings
615613
terminalOutputLineLimit={terminalOutputLineLimit}
616614
terminalShellIntegrationTimeout={terminalShellIntegrationTimeout}
617-
terminalShellIntegrationDisabled={terminalShellIntegrationDisabled} // Added from upstream
615+
terminalShellIntegrationDisabled={terminalShellIntegrationDisabled}
618616
terminalCommandDelay={terminalCommandDelay}
619617
terminalPowershellCounter={terminalPowershellCounter}
620618
terminalZshClearEolMark={terminalZshClearEolMark}

0 commit comments

Comments
 (0)