- Move leftSidebarMode from URL state to local useState in unified-shell,
avoiding force-dynamic router round-trip that made the button appear broken - Replace fileURLToPath(new URL(..., import.meta.url)) with process.cwd()
in bb-pi-bootstrap.ts — import.meta.url is a webpack:// URL in Next.js,
causing cross-realm TypeError when passed to Node.js fileURLToPath()
6 lines
396 B
TypeScript
6 lines
396 B
TypeScript
// src/components/agents/index.ts
|
|
export { AgentActionRow, type AgentActionRowProps } from './agent-action-row';
|
|
export { AgentAssignButton, type AgentAssignButtonProps } from './agent-assign-button';
|
|
export { AgentSpawnButton, type AgentSpawnButtonProps } from './agent-spawn-button';
|
|
export { AgentPickerPopup, type AgentPickerPopupProps } from './agent-picker-popup';
|
|
export * from './hooks';
|