diff --git a/src/components/structures/RightPanel.js b/src/components/structures/RightPanel.js
index 48d272f6c9..895f6ae57e 100644
--- a/src/components/structures/RightPanel.js
+++ b/src/components/structures/RightPanel.js
@@ -185,7 +185,7 @@ export default class RightPanel extends React.Component {
} else if (this.state.phase === RightPanel.Phase.GroupRoomList) {
panel = ;
} else if (this.state.phase === RightPanel.Phase.RoomMemberInfo) {
- if (SettingsStore.isFeatureEnabled("feature_user_info_panel")) {
+ if (SettingsStore.isFeatureEnabled("feature_dm_verification")) {
const onClose = () => {
dis.dispatch({
action: "view_user",
@@ -204,7 +204,7 @@ export default class RightPanel extends React.Component {
} else if (this.state.phase === RightPanel.Phase.Room3pidMemberInfo) {
panel = ;
} else if (this.state.phase === RightPanel.Phase.GroupMemberInfo) {
- if (SettingsStore.isFeatureEnabled("feature_user_info_panel")) {
+ if (SettingsStore.isFeatureEnabled("feature_dm_verification")) {
const onClose = () => {
dis.dispatch({
action: "view_user",
diff --git a/src/i18n/strings/en_EN.json b/src/i18n/strings/en_EN.json
index 9f13d133c4..473efdfb76 100644
--- a/src/i18n/strings/en_EN.json
+++ b/src/i18n/strings/en_EN.json
@@ -340,9 +340,8 @@
"Group & filter rooms by custom tags (refresh to apply changes)": "Group & filter rooms by custom tags (refresh to apply changes)",
"Render simple counters in room header": "Render simple counters in room header",
"Multiple integration managers": "Multiple integration managers",
- "Use the new, consistent UserInfo panel for Room Members and Group Members": "Use the new, consistent UserInfo panel for Room Members and Group Members",
"Try out new ways to ignore people (experimental)": "Try out new ways to ignore people (experimental)",
- "Send verification requests in direct message": "Send verification requests in direct message",
+ "Send verification requests in direct message, including a new verification UX in the member panel.": "Send verification requests in direct message, including a new verification UX in the member panel.",
"Enable cross-signing to verify per-user instead of per-device": "Enable cross-signing to verify per-user instead of per-device",
"Use the new, faster, composer for writing messages": "Use the new, faster, composer for writing messages",
"Enable Emoji suggestions while typing": "Enable Emoji suggestions while typing",
diff --git a/src/settings/Settings.js b/src/settings/Settings.js
index 89bca043bd..718a0daec3 100644
--- a/src/settings/Settings.js
+++ b/src/settings/Settings.js
@@ -120,12 +120,6 @@ export const SETTINGS = {
supportedLevels: LEVELS_FEATURE,
default: false,
},
- "feature_user_info_panel": {
- isFeature: true,
- displayName: _td("Use the new, consistent UserInfo panel for Room Members and Group Members"),
- supportedLevels: LEVELS_FEATURE,
- default: false,
- },
"feature_mjolnir": {
isFeature: true,
displayName: _td("Try out new ways to ignore people (experimental)"),
@@ -142,7 +136,8 @@ export const SETTINGS = {
},
"feature_dm_verification": {
isFeature: true,
- displayName: _td("Send verification requests in direct message"),
+ displayName: _td("Send verification requests in direct message," +
+ " including a new verification UX in the member panel."),
supportedLevels: LEVELS_FEATURE,
default: false,
},