Debug duplicate log entries (vibe-kanban) (#472)

* Commit changes from coding agent for task attempt fcbbae18-ae46-4278-ae8c-df1723317799

* Cleanup script changes for task attempt fcbbae18-ae46-4278-ae8c-df1723317799
This commit is contained in:
Louis Knight-Webb
2025-08-14 11:43:57 +01:00
committed by GitHub
parent 7939de51df
commit bed49d5704

View File

@@ -132,7 +132,7 @@ function LogsTab() {
(attemptData.processes || []).filter((process) =>
shouldShowInLogs(process.run_reason)
),
[attemptData.processes]
[attemptData.processes?.map((p) => p.id).join(',')]
);
const { entries } = useProcessesLogs(filteredProcesses, true);