unset action name when done

This commit is contained in:
MaxRobinsonTheGreat 2024-09-27 17:13:23 -05:00
parent de7883a0d2
commit f3d2f29652

View file

@ -95,7 +95,7 @@ export async function executeCommand(agent, message) {
agent.coder.setCurActionName(command.name);
const result = await command.perform(agent, ...parsed.args);
if (is_action)
agent.coder.setCurActionName(command.name);
agent.coder.setCurActionName('');
return result;
}
}