From d77cbf9c46450536f45c70ae58d3744474d1916f Mon Sep 17 00:00:00 2001 From: Adam <2363879+adamdotdevin@users.noreply.github.com> Date: Tue, 20 Jan 2026 07:14:45 -0600 Subject: [PATCH] chore: cleanup --- .../app/src/components/dialog-settings.tsx | 94 +++++++++---------- 1 file changed, 44 insertions(+), 50 deletions(-) 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 = () => { - - - - - - - - - - - - - - - - - - + {/* */} + {/* */} + {/* */} + {/* */} + {/* */} + {/* */} + {/* */} + {/* */} + {/* */} + {/* */} + {/* */} + {/* */} + {/* */} + {/* */} + {/* */} + {/* */} + {/* */} + {/* */} )