chore: generate

This commit is contained in:
opencode-agent[bot]
2026-05-21 05:49:32 +00:00
parent b207e32249
commit 8c72edb3ff
6 changed files with 15 additions and 11 deletions
+1 -2
View File
@@ -74,8 +74,7 @@ export function projectForSession<T extends { id?: string; worktree: string; san
const directory = pathKey(session.directory)
return projects.find(
(project) =>
pathKey(project.worktree) === directory ||
project.sandboxes?.some((sandbox) => pathKey(sandbox) === directory),
pathKey(project.worktree) === directory || project.sandboxes?.some((sandbox) => pathKey(sandbox) === directory),
)
}