From 43559ea476cd7bde49474e25d8cb6c7af0085d95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Canouil?= <8896044+mcanouil@users.noreply.github.com> Date: Sun, 2 Feb 2025 21:08:03 +0100 Subject: [PATCH] chore: rm debug code --- src/utils/extensions.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/utils/extensions.ts b/src/utils/extensions.ts index 85128a2..8ae5fbd 100644 --- a/src/utils/extensions.ts +++ b/src/utils/extensions.ts @@ -48,7 +48,6 @@ export async function fetchExtensions(url: string, context: vscode.ExtensionCont const data = await response.text(); const extensionsList = data.split("\n").filter((line: string) => line.trim() !== ""); await context.globalState.update(cacheKey, { data: extensionsList, timestamp: Date.now() }); - const newCachedData = context.globalState.get<{ data: string[]; timestamp: number }>(cacheKey); return extensionsList; } catch (error) { QUARTO_WIZARD_LOG.appendLine(`${message} ${error}`);