From e1121178663f5b89495c9330a92f90d0b26aeb05 Mon Sep 17 00:00:00 2001 From: Mattia Astorino Date: Mon, 6 Jan 2020 17:45:44 +0100 Subject: [PATCH] chore: Remove firstInstall message --- src/material.theme.config.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/material.theme.config.ts b/src/material.theme.config.ts index 3fcd034..354738e 100644 --- a/src/material.theme.config.ts +++ b/src/material.theme.config.ts @@ -13,11 +13,6 @@ export async function activate(context: ExtensionContext): Promise { const releaseNotesView = new ReleaseNotesWebview(context); const installationType = extensionManager.getInstallationType(); - // TODO: BEFORE RELEASE add new message for new install because with the refactor also updates will be considered as new install, for the first time - if (installationType.firstInstall) { - await installationMessage(); - } - if ((installationType.firstInstall || installationType.update) && await changelogManager.askShowChangelog()) { await releaseNotesView.show(); }