We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 917cfab commit 606dfbfCopy full SHA for 606dfbf
src/vs/workbench/contrib/chat/browser/chatSessions.ts
@@ -457,7 +457,7 @@ class ChatSessionsViewPaneContainer extends ViewPaneContainer {
457
if (provider.chatSessionType === 'local') {
458
displayName = 'Local Chat Sessions';
459
} else {
460
- const extContribution = extensionPointContributions.find(c => c.id === provider.chatSessionType);
+ const extContribution = extensionPointContributions.find(c => c.type === provider.chatSessionType);
461
if (!extContribution) {
462
this.logService.warn(`No extension contribution found for chat session type: ${provider.chatSessionType}`);
463
return; // Skip if no contribution found
0 commit comments