fix: fix mcp tool call in extension

- fix console.log directly being used in scope-adjutment.js breaking mcp
This commit is contained in:
Ralph Khreish
2025-08-02 22:48:10 +03:00
parent 82b17bdb57
commit 30359e3cea
2 changed files with 16 additions and 12 deletions

View File

@@ -251,7 +251,7 @@ export function useScopeUpTask() {
type: 'mcpRequest',
tool: 'scope_up_task',
params: {
id: taskId,
id: String(taskId),
strength,
prompt,
research: options.research || false
@@ -309,7 +309,7 @@ export function useScopeDownTask() {
type: 'mcpRequest',
tool: 'scope_down_task',
params: {
id: taskId,
id: String(taskId),
strength,
prompt,
research: options.research || false