diff --git a/src/components/structures/MatrixChat.js b/src/components/structures/MatrixChat.js
index d0a5aa42c45..613d310da97 100644
--- a/src/components/structures/MatrixChat.js
+++ b/src/components/structures/MatrixChat.js
@@ -572,7 +572,7 @@ export default React.createClass({
this._viewIndexedRoom(payload.roomIndex);
break;
case 'view_user_settings': {
- if (SettingsStore.isFeatureEnabled("feature_tabbed_settings")) {
+ if (true || SettingsStore.isFeatureEnabled("feature_tabbed_settings")) {
const UserSettingsDialog = sdk.getComponent("dialogs.UserSettingsDialog");
Modal.createTrackedDialog('User settings', '', UserSettingsDialog, {}, 'mx_SettingsDialog');
} else {
diff --git a/src/components/views/dialogs/RoomSettingsDialog.js b/src/components/views/dialogs/RoomSettingsDialog.js
index 0578ccaffd6..9718d29bbc2 100644
--- a/src/components/views/dialogs/RoomSettingsDialog.js
+++ b/src/components/views/dialogs/RoomSettingsDialog.js
@@ -83,11 +83,11 @@ export default class RoomSettingsDialog extends React.Component {
"mx_RoomSettingsDialog_warningIcon",
,
));
- tabs.push(new Tab(
- _td("Visit old settings"),
- "mx_RoomSettingsDialog_warningIcon",
- ,
- ));
+ // tabs.push(new Tab(
+ // _td("Visit old settings"),
+ // "mx_RoomSettingsDialog_warningIcon",
+ // ,
+ // ));
return tabs;
}
diff --git a/src/components/views/dialogs/UserSettingsDialog.js b/src/components/views/dialogs/UserSettingsDialog.js
index 2616542bf7c..d241be76600 100644
--- a/src/components/views/dialogs/UserSettingsDialog.js
+++ b/src/components/views/dialogs/UserSettingsDialog.js
@@ -96,11 +96,11 @@ export default class UserSettingsDialog extends React.Component {
"mx_UserSettingsDialog_helpIcon",
,
));
- tabs.push(new Tab(
- _td("Visit old settings"),
- "mx_UserSettingsDialog_helpIcon",
- ,
- ));
+ // tabs.push(new Tab(
+ // _td("Visit old settings"),
+ // "mx_UserSettingsDialog_helpIcon",
+ // ,
+ // ));
return tabs;
}
diff --git a/src/stores/RoomViewStore.js b/src/stores/RoomViewStore.js
index ba78e7687f5..db49de805b1 100644
--- a/src/stores/RoomViewStore.js
+++ b/src/stores/RoomViewStore.js
@@ -120,7 +120,7 @@ class RoomViewStore extends Store {
});
break;
case 'open_room_settings':
- if (SettingsStore.isFeatureEnabled("feature_tabbed_settings")) {
+ if (true || SettingsStore.isFeatureEnabled("feature_tabbed_settings")) {
const RoomSettingsDialog = sdk.getComponent("dialogs.RoomSettingsDialog");
Modal.createTrackedDialog('Room settings', '', RoomSettingsDialog, {
roomId: this._state.roomId,