From 20ff6eefc0924c27afa786a2eeb24890a84b8626 Mon Sep 17 00:00:00 2001 From: Jade Welton Date: Tue, 14 Jul 2026 10:57:42 -0700 Subject: [PATCH] Fix merge issue. --- .../Menus/CommandBar/CommandBarComponentButtonFactory.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Explorer/Menus/CommandBar/CommandBarComponentButtonFactory.tsx b/src/Explorer/Menus/CommandBar/CommandBarComponentButtonFactory.tsx index 211d3500f..486c199b9 100644 --- a/src/Explorer/Menus/CommandBar/CommandBarComponentButtonFactory.tsx +++ b/src/Explorer/Menus/CommandBar/CommandBarComponentButtonFactory.tsx @@ -518,7 +518,7 @@ function createOpenTerminalButtonByKind( }); return; } - if (useNotebook.getState().isNotebookEnabled || userContext.features.enableCloudShell) { + if (userContext.features.enableCloudShell) { container.openNotebookTerminal(terminalKind); } },