We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acf71f8 commit 5418b6cCopy full SHA for 5418b6c
1 file changed
src/vs/workbench/electron-browser/nps.contribution.ts
@@ -85,7 +85,9 @@ class NPSContribution implements IWorkbenchContribution {
85
});
86
87
const actions = [takeSurveyAction, remindMeLaterAction, neverAgainAction];
88
- messageService.show(Severity.Info, { message, actions });
+
89
+ // TODO@Ben need this setTimeout due to #9769
90
+ setTimeout(() => messageService.show(Severity.Info, { message, actions }));
91
}
92
93
getId(): string {
0 commit comments