diff --git a/mcp-server/src/core/direct-functions/list-tasks.js b/mcp-server/src/core/direct-functions/list-tasks.js index 7daeb39a..5cc6bb43 100644 --- a/mcp-server/src/core/direct-functions/list-tasks.js +++ b/mcp-server/src/core/direct-functions/list-tasks.js @@ -4,11 +4,11 @@ */ import { listTasks } from '../../../../scripts/modules/task-manager.js'; +import { getCachedOrExecute } from '../../tools/utils.js'; import { enableSilentMode, disableSilentMode } from '../../../../scripts/modules/utils.js'; -import { getCachedOrExecute } from '../../tools/utils.js'; /** * Direct function wrapper for listTasks with error handling and caching. diff --git a/scripts/modules/ui.js b/scripts/modules/ui.js index 67ea6753..d6abf9c3 100644 --- a/scripts/modules/ui.js +++ b/scripts/modules/ui.js @@ -757,7 +757,7 @@ async function displayNextTask(tasksPath, complexityReportPath = null) { data.tasks, true, complexityReport - ) // Pass complexityReport + ) ], [ chalk.cyan.bold('Complexity:'), @@ -1187,7 +1187,7 @@ async function displayTaskById(tasksPath, taskId, complexityReportPath = null) { data.tasks, true, complexityReport - ) // Pass complexityReport + ) ], [ chalk.cyan.bold('Complexity:'),