From b182119388373604e684cf85b00bb0c979585b3f Mon Sep 17 00:00:00 2001 From: Faith Kangai Date: Thu, 19 Sep 2024 12:44:51 +0300 Subject: [PATCH] remove display of successful plugin generation for ttk intg (#5436) fixes #5400 --- vscode/microsoft-kiota/src/extension.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vscode/microsoft-kiota/src/extension.ts b/vscode/microsoft-kiota/src/extension.ts index a56227764c..f80ab84ce2 100644 --- a/vscode/microsoft-kiota/src/extension.ts +++ b/vscode/microsoft-kiota/src/extension.ts @@ -447,7 +447,10 @@ export async function activate( if (!isSuccess) { await exportLogsAndShowErrors(result); } - void vscode.window.showInformationMessage(vscode.l10n.t('Plugin generated successfully.')); + const isttkIntegration = deepLinkParams.source && deepLinkParams.source.toLowerCase() === 'ttk'? true : false; + if (!isttkIntegration) { + void vscode.window.showInformationMessage(vscode.l10n.t('Plugin generated successfully.')); + } } return result; }