From e6fe485760a51cb0b43693f995b3262e08384272 Mon Sep 17 00:00:00 2001 From: Alessandro Fragnani Date: Sat, 26 Mar 2022 01:23:13 -0300 Subject: [PATCH] Fix missing async/await for web ready whats-new --- src/extension.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/extension.ts b/src/extension.ts index 2b741ca..81354eb 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -13,11 +13,11 @@ import { registerWalkthrough } from "./commands/walkthrough"; // this method is called when your extension is activated // your extension is activated the very first time the command is executed -export function activate(context: vscode.ExtensionContext) { +export async function activate(context: vscode.ExtensionContext) { Container.context = context; - registerWhatsNew(); + await registerWhatsNew(); registerProviders(); registerGenerateTags(); registerWalkthrough();