Skip to content

Commit

Permalink
Fix missing async/await for web ready whats-new
Browse files Browse the repository at this point in the history
  • Loading branch information
alefragnani committed Mar 26, 2022
1 parent 7d4ddd1 commit e6fe485
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit e6fe485

Please sign in to comment.