Skip to content

Commit

Permalink
Fix slash commands / followups mixup (#198003)
Browse files Browse the repository at this point in the history
  • Loading branch information
roblourens authored Nov 11, 2023
1 parent ca8981c commit bdc113f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/workbench/api/browser/mainThreadChatAgents2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export class MainThreadChatAgents2 extends Disposable implements MainThreadChatA
}
},
provideFollowups: async (sessionId, token): Promise<IChatFollowup[]> => {
if (!this._agents.get(handle)?.hasSlashCommands) {
if (!this._agents.get(handle)?.hasFollowups) {
return [];
}

Expand Down

0 comments on commit bdc113f

Please sign in to comment.