From b567ba5dfc93b21cdaa149bc625baadc489cc46b Mon Sep 17 00:00:00 2001 From: Sebastian <19554889+sebslight@users.noreply.github.com> Date: Sun, 15 Feb 2026 11:48:52 -0500 Subject: [PATCH] fix(sandbox): allow registry entries without agent scope --- src/agents/sandbox/manage.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/agents/sandbox/manage.ts b/src/agents/sandbox/manage.ts index 146f2879b..f6988146e 100644 --- a/src/agents/sandbox/manage.ts +++ b/src/agents/sandbox/manage.ts @@ -27,7 +27,7 @@ async function listSandboxRegistryItems< TEntry extends { containerName: string; image: string; sessionKey: string }, >(params: { read: () => Promise<{ entries: TEntry[] }>; - resolveConfiguredImage: (agentId: string) => string; + resolveConfiguredImage: (agentId?: string) => string; }): Promise> { const registry = await params.read(); const results: Array = [];