fix(background-agent): rename getCompletedTasks to getNonRunningTasks for semantic accuracy

This commit is contained in:
YeonGyu-Kim
2026-02-09 11:45:20 +09:00
parent b8d3daab1d
commit 55c73dcd37
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -48,7 +48,7 @@ export class TaskStateManager {
getRunningTasks(): BackgroundTask[] {
return Array.from(this.tasks.values()).filter(t => t.status === "running")
}
getCompletedTasks(): BackgroundTask[] {
getNonRunningTasks(): BackgroundTask[] {
return Array.from(this.tasks.values()).filter(t => t.status !== "running")
}