Skip to content

Commit

Permalink
remove display of successful plugin generation for ttk intg (#5436)
Browse files Browse the repository at this point in the history
fixes #5400
  • Loading branch information
fey101 authored Sep 19, 2024
1 parent bbb0208 commit b182119
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion vscode/microsoft-kiota/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit b182119

Please sign in to comment.