Soften useConversationHistory error (#823)

* soften error

* fmt
This commit is contained in:
Louis Knight-Webb
2025-09-23 19:19:36 +01:00
committed by GitHub
parent 0140205df4
commit f93b954068

View File

@@ -164,7 +164,7 @@ export const useConversationHistory = ({
);
// Only throw error if there are multiple agent processes running
if (runningProcesses.length > 1) {
throw new Error('More than one running execution process found');
console.error('More than one running execution process found');
}
return runningProcesses[0] || null;
};