chore(vscode-ide-companion): temporarily annotate some logic to suppress showDiff

This commit is contained in:
yiliang114
2025-12-08 10:18:55 +08:00
parent be71976a1f
commit 63e4794633
4 changed files with 41 additions and 39 deletions

View File

@@ -80,7 +80,7 @@ export const ToolCallRouter: React.FC<
}
// Get the appropriate component for this kind
const Component = getToolCallComponent(toolCall.kind, toolCall);
const Component = getToolCallComponent(toolCall.kind);
// Render the specialized component
return <Component toolCall={toolCall} isFirst={isFirst} isLast={isLast} />;

View File

@@ -49,6 +49,7 @@ export class FileMessageHandler extends BaseMessageHandler {
break;
case 'openDiff':
console.log('[FileMessageHandler ===== ] openDiff called with:', data);
await this.handleOpenDiff(data);
break;