Fix double translation issue (#10240

* Fix double translation issue

* Remove some redundant string concatenations
This commit is contained in:
Michael Telatyński
2023-02-27 09:15:27 +00:00
committed by GitHub
parent a3defa6cf7
commit 12dd799301
21 changed files with 29 additions and 41 deletions
+1 -1
View File
@@ -454,7 +454,7 @@ export default class LoginComponent extends React.PureComponent<IProps, IState>
}
let errorText: ReactNode =
_t("There was a problem communicating with the homeserver, " + "please try again later.") +
_t("There was a problem communicating with the homeserver, please try again later.") +
(errCode ? " (" + errCode + ")" : "");
if (err instanceof ConnectionError) {