diff --git a/apps/ui/src/components/views/board-view/dialogs/agent-output-modal.tsx b/apps/ui/src/components/views/board-view/dialogs/agent-output-modal.tsx index 9a1ebb75..96bd158c 100644 --- a/apps/ui/src/components/views/board-view/dialogs/agent-output-modal.tsx +++ b/apps/ui/src/components/views/board-view/dialogs/agent-output-modal.tsx @@ -66,8 +66,7 @@ export function AgentOutputModal({ try { // Use projectPath prop if provided, otherwise fall back to window.__currentProject for backward compatibility - const resolvedProjectPath = - projectPathProp || (window as any).__currentProject?.path; + const resolvedProjectPath = projectPathProp || (window as any).__currentProject?.path; if (!resolvedProjectPath) { setIsLoading(false); return;