mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-24 13:54:07 +00:00
fix type error
This commit is contained in:
parent
b4667d9b0d
commit
3f3989e694
1 changed files with 1 additions and 1 deletions
|
|
@ -7,7 +7,7 @@ function View(props: { api: TuiPluginApi }) {
|
|||
const [open, setOpen] = createSignal(true)
|
||||
const theme = () => props.api.theme.current
|
||||
const list = createMemo(() => props.api.state.lsp())
|
||||
const off = createMemo(() => props.api.state.config.lsp === false)
|
||||
const off = createMemo(() => props.api.state.config.lsp)
|
||||
|
||||
return (
|
||||
<box>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue