diff options
| author | Adam <[email protected]> | 2025-12-11 14:55:41 -0600 |
|---|---|---|
| committer | Adam <[email protected]> | 2025-12-11 14:55:41 -0600 |
| commit | f8dc740c61558d69e668d10d610296b563fedada (patch) | |
| tree | 5e7e1a19981b59264af9670f727811062128bc29 | |
| parent | dea5111a5affb1dc25a2ace5252f5d35e47cca76 (diff) | |
| download | opencode-f8dc740c61558d69e668d10d610296b563fedada.tar.gz opencode-f8dc740c61558d69e668d10d610296b563fedada.zip | |
fix: remove settings button
| -rw-r--r-- | packages/desktop/src/pages/layout.tsx | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/packages/desktop/src/pages/layout.tsx b/packages/desktop/src/pages/layout.tsx index 3b9972c75..05386c1fb 100644 --- a/packages/desktop/src/pages/layout.tsx +++ b/packages/desktop/src/pages/layout.tsx @@ -536,17 +536,17 @@ export default function Layout(props: ParentProps) { </Button> </Tooltip> </Show> - <Tooltip placement="right" value="Settings" inactive={layout.sidebar.opened()}> - <Button - disabled - class="flex w-full text-left justify-start text-12-medium text-text-base stroke-[1.5px] rounded-lg px-2" - variant="ghost" - size="large" - icon="settings-gear" - > - <Show when={layout.sidebar.opened()}>Settings</Show> - </Button> - </Tooltip> + {/* <Tooltip placement="right" value="Settings" inactive={layout.sidebar.opened()}> */} + {/* <Button */} + {/* disabled */} + {/* class="flex w-full text-left justify-start text-12-medium text-text-base stroke-[1.5px] rounded-lg px-2" */} + {/* variant="ghost" */} + {/* size="large" */} + {/* icon="settings-gear" */} + {/* > */} + {/* <Show when={layout.sidebar.opened()}>Settings</Show> */} + {/* </Button> */} + {/* </Tooltip> */} <Tooltip placement="right" value="Share feedback" inactive={layout.sidebar.opened()}> <Button as={"a"} |
