diff --git a/src/components/views/room_settings/AliasSettings.js b/src/components/views/room_settings/AliasSettings.js
index d6a6b608e2..4859174b28 100644
--- a/src/components/views/room_settings/AliasSettings.js
+++ b/src/components/views/room_settings/AliasSettings.js
@@ -186,40 +186,33 @@ export default class AliasSettings extends React.Component {
const EditableItemList = sdk.getComponent("elements.EditableItemList");
const localDomain = MatrixClientPeg.get().getDomain();
- let canonicalAliasSection;
- if (this.props.canSetCanonicalAlias) {
- let found = false;
- const canonicalValue = this.state.canonicalAlias || "";
- canonicalAliasSection = (
-
-
- {
- Object.keys(this.state.domainToAliases).map((domain, i) => {
- return this.state.domainToAliases[domain].map((alias, j) => {
- if (alias === this.state.canonicalAlias) found = true;
- return (
-
- );
- });
- })
- }
- {
- found || !this.state.canonicalAlias ? '' :
-
- }
-
- );
- } else {
- canonicalAliasSection = (
- { this.state.canonicalAlias || _t('not set') }
- );
- }
+ let found = false;
+ const canonicalValue = this.state.canonicalAlias || "";
+ const canonicalAliasSection = (
+
+
+ {
+ Object.keys(this.state.domainToAliases).map((domain, i) => {
+ return this.state.domainToAliases[domain].map((alias, j) => {
+ if (alias === this.state.canonicalAlias) found = true;
+ return (
+
+ );
+ });
+ })
+ }
+ {
+ found || !this.state.canonicalAlias ? '' :
+
+ }
+
+ );
let remoteAliasesSection;
if (this.state.remoteDomains.length) {
diff --git a/src/i18n/strings/en_EN.json b/src/i18n/strings/en_EN.json
index b74f14a99e..c32b604f7e 100644
--- a/src/i18n/strings/en_EN.json
+++ b/src/i18n/strings/en_EN.json
@@ -814,7 +814,6 @@
"There was an error removing that alias. It may no longer exist or a temporary error occurred.": "There was an error removing that alias. It may no longer exist or a temporary error occurred.",
"Main address": "Main address",
"not specified": "not specified",
- "not set": "not set",
"Remote addresses for this room:": "Remote addresses for this room:",
"Local addresses for this room:": "Local addresses for this room:",
"This room has no local addresses": "This room has no local addresses",