Skip to content
This repository was archived by the owner on Jan 5, 2026. It is now read-only.

Commit 31fae5d

Browse files
authored
Merge branch 'master' into toanzian/payments
2 parents cf71897 + 6ff8506 commit 31fae5d

3 files changed

Lines changed: 5 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
- [client/main] Added Ngrok Debugger UI in PR [2032](https://github.com/microsoft/BotFramework-Emulator/pull/2032)
1111
- [client/main] Changed conversation infrastructure to use Web Sockets to communicate with Web Chat in PR [2034](https://github.com/microsoft/BotFramework-Emulator/pull/2034)
1212

13+
## Changed
14+
- [client] Hid services pane by default in PR [2059](https://github.com/microsoft/BotFramework-Emulator/pull/2059)
15+
1316
## Removed
1417
- [client/main] Removed legacy payments code in PR [2058](https://github.com/microsoft/BotFramework-Emulator/pull/2058)
1518

packages/app/client/src/state/reducers/explorer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export interface ExplorerState {
4646
export declare type SortCriteria = string;
4747

4848
const DEFAULT_STATE: ExplorerState = {
49-
showing: true,
49+
showing: false,
5050
sortSelectionByPanelId: { [CONNECTED_SERVICES_PANEL_ID]: 'name' },
5151
};
5252

packages/app/main/src/state/reducers/explorer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export interface ExplorerState {
4646
export declare type SortCriteria = string;
4747

4848
const DEFAULT_STATE: ExplorerState = {
49-
showing: true,
49+
showing: false,
5050
sortSelectionByPanelId: { [CONNECTED_SERVICES_PANEL_ID]: 'name' },
5151
};
5252

0 commit comments

Comments
 (0)