chore(lint): burn down remaining warnings to zero

This commit is contained in:
William Valentin
2026-02-15 23:14:21 -08:00
parent 49b752e8b0
commit 948d4ac6d8
67 changed files with 235 additions and 256 deletions
+4 -1
View File
@@ -148,7 +148,10 @@ export function createMessageRouter(deps: {
// Lazy sandbox: create the sandboxed tools with a deferred sandbox reference
// The sandbox is created on first use via SandboxManager.getOrCreate()
const sandboxSessionId = sessionId;
const sandboxManager = deps.sandboxManager!;
const sandboxManager = deps.sandboxManager;
if (!sandboxManager) {
throw new Error('Sandbox manager unavailable for sandboxed agent execution');
}
// Create a proxy sandbox that lazily initializes
const lazySandboxShell: Tool = {