Skip to content

Commit 606dfbf

Browse files
authored
Fix chat session type activation (microsoft#258380)
1 parent 917cfab commit 606dfbf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/chat/browser/chatSessions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ class ChatSessionsViewPaneContainer extends ViewPaneContainer {
457457
if (provider.chatSessionType === 'local') {
458458
displayName = 'Local Chat Sessions';
459459
} else {
460-
const extContribution = extensionPointContributions.find(c => c.id === provider.chatSessionType);
460+
const extContribution = extensionPointContributions.find(c => c.type === provider.chatSessionType);
461461
if (!extContribution) {
462462
this.logService.warn(`No extension contribution found for chat session type: ${provider.chatSessionType}`);
463463
return; // Skip if no contribution found

0 commit comments

Comments
 (0)