Skip to content

Commit

Permalink
chore: rm debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
mcanouil committed Feb 2, 2025
1 parent 9d8dc49 commit 43559ea
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/utils/extensions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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}`);
Expand Down

0 comments on commit 43559ea

Please sign in to comment.