Skip to content

Commit

Permalink
dont check if activated, just if ext is there
Browse files Browse the repository at this point in the history
  • Loading branch information
isabelizimm committed Oct 1, 2024
1 parent b5dad8f commit 8ad8812
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down

0 comments on commit 8ad8812

Please sign in to comment.