Remove bold text

This commit is contained in:
Rob Lourens
2024-09-24 08:44:11 -07:00
parent 22948f077b
commit 077b203b23

View File

@ -46,7 +46,7 @@ function registerChatTool(context: vscode.ExtensionContext) {
const params = options.parameters as ITabCountParameters;
return {
title: 'Count the number of open tabs',
message: new vscode.MarkdownString(`${options.participantName} will count the number of **open tabs**` + (params.tabGroup !== undefined ? ` in tab group ${params.tabGroup}` : ''))
message: new vscode.MarkdownString(`${options.participantName} will count the number of open tabs` + (params.tabGroup !== undefined ? ` in tab group ${params.tabGroup}` : ''))
};
}
}));