Skip to content

Commit 5418b6c

Browse files
committed
show nps message
related to microsoft#9769
1 parent acf71f8 commit 5418b6c

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/vs/workbench/electron-browser/nps.contribution.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,9 @@ class NPSContribution implements IWorkbenchContribution {
8585
});
8686

8787
const actions = [takeSurveyAction, remindMeLaterAction, neverAgainAction];
88-
messageService.show(Severity.Info, { message, actions });
88+
89+
// TODO@Ben need this setTimeout due to #9769
90+
setTimeout(() => messageService.show(Severity.Info, { message, actions }));
8991
}
9092

9193
getId(): string {

0 commit comments

Comments
 (0)