From 8ad881202213ac256736dacc8f42b3d223b8dc30 Mon Sep 17 00:00:00 2001 From: isabelizimm Date: Tue, 1 Oct 2024 11:11:06 -0400 Subject: [PATCH] dont check if activated, just if ext is there --- .../positron-python/src/client/positron/webAppContexts.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/positron-python/src/client/positron/webAppContexts.ts b/extensions/positron-python/src/client/positron/webAppContexts.ts index 3eea5ba1fab..f1e83df04fa 100644 --- a/extensions/positron-python/src/client/positron/webAppContexts.ts +++ b/extensions/positron-python/src/client/positron/webAppContexts.ts @@ -13,7 +13,7 @@ function getSupportedLibraries(): string[] { const shinyExtension = vscode.extensions.getExtension(shinyExtensionId); // if shiny extension is installed, we don't need to handle it - if (shinyExtension && shinyExtension.isActive) { + if (shinyExtension) { return libraries; } return libraries.concat('shiny');