diff --git a/packages/app/src/components/dialog-settings.tsx b/packages/app/src/components/dialog-settings.tsx index 872cc4c80..7f4989a6e 100644 --- a/packages/app/src/components/dialog-settings.tsx +++ b/packages/app/src/components/dialog-settings.tsx @@ -1,8 +1,7 @@ -import { Component, createSignal } from "solid-js" +import { Component } from "solid-js" import { Dialog } from "@opencode-ai/ui/dialog" import { Tabs } from "@opencode-ai/ui/tabs" import { Icon } from "@opencode-ai/ui/icon" -import { TextField } from "@opencode-ai/ui/text-field" import { SettingsGeneral } from "./settings-general" import { SettingsKeybinds } from "./settings-keybinds" import { SettingsPermissions } from "./settings-permissions" @@ -13,15 +12,10 @@ import { SettingsCommands } from "./settings-commands" import { SettingsMcp } from "./settings-mcp" export const DialogSettings: Component = () => { - const [search, setSearch] = createSignal("") - return ( - Desktop @@ -31,31 +25,31 @@ export const DialogSettings: Component = () => { Shortcuts - Server - - - Permissions - - - - Providers - - - - Models - - - - Agents - - - - Commands - - - - MCP - + {/* Server */} + {/* */} + {/* */} + {/* Permissions */} + {/* */} + {/* */} + {/* */} + {/* Providers */} + {/* */} + {/* */} + {/* */} + {/* Models */} + {/* */} + {/* */} + {/* */} + {/* Agents */} + {/* */} + {/* */} + {/* */} + {/* Commands */} + {/* */} + {/* */} + {/* */} + {/* MCP */} + {/* */} @@ -63,24 +57,24 @@ export const DialogSettings: Component = () => { - - - - - - - - - - - - - - - - - - + {/* */} + {/* */} + {/* */} + {/* */} + {/* */} + {/* */} + {/* */} + {/* */} + {/* */} + {/* */} + {/* */} + {/* */} + {/* */} + {/* */} + {/* */} + {/* */} + {/* */} + {/* */} )