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 04be68b commit 25542beCopy full SHA for 25542be
extensions/gitpod/src/extension.ts
@@ -82,8 +82,8 @@ export async function activate(context: vscode.ExtensionContext) {
82
}
83
}));
84
85
- if (!context.globalState.get(FIRST_INSTALL_KEY, false)) {
86
- context.globalState.update(FIRST_INSTALL_KEY, true);
+ if (!context.globalState.get<boolean>(FIRST_INSTALL_KEY, false)) {
+ await context.globalState.update(FIRST_INSTALL_KEY, true);
87
telemetry.sendTelemetryEvent('gitpod_desktop_installation', { kind: 'install' });
88
89
0 commit comments