File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import { submitFeedback } from '../feedback/vue/submitFeedback'
8
8
import { deleteCloudFormation } from '../lambda/commands/deleteCloudFormation'
9
9
import { CloudFormationStackNode } from '../lambda/explorer/cloudFormationNodes'
10
10
import globals from '../shared/extensionGlobals'
11
- import { isCloud9 } from '../shared/extensionUtilities'
11
+ import { isCloud9 , isSageMaker } from '../shared/extensionUtilities'
12
12
import { ExtContext } from '../shared/extensions'
13
13
import { getLogger } from '../shared/logger'
14
14
import { RegionProvider } from '../shared/regions/regionProvider'
@@ -76,7 +76,7 @@ export async function activate(args: {
76
76
)
77
77
78
78
const authProvider = CodeCatalystAuthenticationProvider . fromContext ( args . context . extensionContext )
79
- const codecatalystNode = isCloud9 ( 'classic' ) ? [ ] : [ new CodeCatalystRootNode ( authProvider ) ]
79
+ const codecatalystNode = isCloud9 ( 'classic' ) || isSageMaker ( ) ? [ ] : [ new CodeCatalystRootNode ( authProvider ) ]
80
80
const nodes = [ ...codecatalystNode , cdkNode , codewhispererNode ]
81
81
const developerTools = createLocalExplorerView ( nodes )
82
82
args . context . extensionContext . subscriptions . push ( developerTools )
You can’t perform that action at this time.
0 commit comments