chore: generate

This commit is contained in:
opencode-agent[bot]
2026-04-18 01:48:50 +00:00
parent f8327dea11
commit 926c92cc7c
2 changed files with 8 additions and 5 deletions
+4 -1
View File
@@ -226,7 +226,10 @@ export const layer = Layer.effect(
const getClients = Effect.fnUntraced(function* (file: string) {
const ctx = yield* InstanceState.context
if (!AppFileSystem.contains(ctx.directory, file) && (ctx.worktree === "/" || !AppFileSystem.contains(ctx.worktree, file))) {
if (
!AppFileSystem.contains(ctx.directory, file) &&
(ctx.worktree === "/" || !AppFileSystem.contains(ctx.worktree, file))
) {
return [] as LSPClient.Info[]
}
const s = yield* InstanceState.get(state)