From 8f0f620ae9d378480e240f40763693c9311f19ad Mon Sep 17 00:00:00 2001 From: robgruen Date: Fri, 17 Jan 2025 16:44:33 -0800 Subject: [PATCH] Fixed explainer toggling (#573) --- .../dispatcher/src/context/system/action/configActionHandler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/packages/dispatcher/src/context/system/action/configActionHandler.ts b/ts/packages/dispatcher/src/context/system/action/configActionHandler.ts index b2659eff..44ba8dc2 100644 --- a/ts/packages/dispatcher/src/context/system/action/configActionHandler.ts +++ b/ts/packages/dispatcher/src/context/system/action/configActionHandler.ts @@ -32,7 +32,7 @@ export async function executeConfigAction( case "toggleExplanation": await processCommandNoLock( - `@config explanation ${configAction.parameters.enable ? "on" : "off"}`, + `@config explainer ${configAction.parameters.enable ? "on" : "off"}`, context.sessionContext.agentContext, ); break;