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; }