diff --git a/src/Explorer/Menus/CommandBar/CommandBarComponentButtonFactory.test.ts b/src/Explorer/Menus/CommandBar/CommandBarComponentButtonFactory.test.ts index 3f1ecfc42..677df81de 100644 --- a/src/Explorer/Menus/CommandBar/CommandBarComponentButtonFactory.test.ts +++ b/src/Explorer/Menus/CommandBar/CommandBarComponentButtonFactory.test.ts @@ -345,7 +345,7 @@ describe("CommandBarComponentButtonFactory tests", () => { describe("Open Postgres and vCore Mongo buttons", () => { const openPostgresShellButtonLabel = "Open PSQL shell"; - const openVCoreMongoShellButtonLabel = "Open MongoDB (vcore) shell"; + const openVCoreMongoShellButtonLabel = "Open MongoDB (vCore) shell"; beforeAll(() => { mockExplorer = {} as Explorer; diff --git a/src/Explorer/Menus/CommandBar/CommandBarComponentButtonFactory.tsx b/src/Explorer/Menus/CommandBar/CommandBarComponentButtonFactory.tsx index 3d30fa261..94c1726f6 100644 --- a/src/Explorer/Menus/CommandBar/CommandBarComponentButtonFactory.tsx +++ b/src/Explorer/Menus/CommandBar/CommandBarComponentButtonFactory.tsx @@ -523,7 +523,7 @@ function createOpenTerminalButtonByKind( case ViewModels.TerminalKind.Postgres: return "PSQL"; case ViewModels.TerminalKind.VCoreMongo: - return "MongoDB (vcore)"; + return "MongoDB (vCore)"; default: return ""; }