We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c4da40 commit ff3bd7aCopy full SHA for ff3bd7a
src/preReleaseNotification.ts
@@ -101,6 +101,11 @@ export namespace PreReleaseNotification {
101
);
102
await env.openExternal(docsUri);
103
Logger.info("User clicked to learn more from pre-release notification");
104
+
105
+ // Re-show the notification after viewing docs
106
+ setTimeout(() => {
107
+ showPreReleaseNotification(context);
108
+ }, 2000); // Small delay to let the external browser open
109
} else {
110
// Track user dismissed the notification (clicked "Not Now" or dismissed)
111
Telemetry.sendEvent("preReleaseNotification", {
0 commit comments