pi-better-subagents 0.1.29 → 0.1.30

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-better-subagents",
3
- "version": "0.1.29",
3
+ "version": "0.1.30",
4
4
  "description": "Pi extension for detached, sandboxed subagent runs that keep the foreground session free.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -179,7 +179,10 @@ export function ensureBackgroundWorkNavigator(ctx: ExtensionContext, deps: HostD
179
179
  if (!isNavigatorUiAvailable(ctx)) return;
180
180
  const s = state();
181
181
  s.uiCtx = ctx;
182
- s.deps = deps;
182
+ s.deps = {
183
+ ...deps,
184
+ createTranscriptComponent: deps.createTranscriptComponent ?? s.deps?.createTranscriptComponent,
185
+ };
183
186
  try { (ctx.ui as any).setWidget?.(MAIN_LIST_WIDGET_KEY, undefined); } catch { /* ignore */ }
184
187
  s.mainListWidgetInstalled = false;
185
188
  s.mainListRequestRender = undefined;