Skip to content

Commit

Permalink
Disable showing people in spaces by default
Browse files Browse the repository at this point in the history
  • Loading branch information
SpiritCroc committed Nov 30, 2024
1 parent 1ff5a6c commit f335d70
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/settings/Settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1073,7 +1073,7 @@ export const SETTINGS: { [setting: string]: ISetting } = {
},
"Spaces.showPeopleInSpace": {
supportedLevels: [SettingLevel.ROOM_ACCOUNT],
default: true,
default: false,
},
"developerMode": {
displayName: _td("devtools|developer_mode"),
Expand Down
2 changes: 1 addition & 1 deletion src/stores/room-list/filters/SpaceFilterCondition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import SettingsStore from "../../../settings/SettingsStore";
export class SpaceFilterCondition extends EventEmitter implements IFilterCondition, IDestroyable {
private roomIds = new Set<string>();
private userIds = new Set<string>();
private showPeopleInSpace = true;
private showPeopleInSpace = false;
private space: SpaceKey = MetaSpace.Home;

public isVisible(room: Room): boolean {
Expand Down

0 comments on commit f335d70

Please sign in to comment.