Tweak identity server warning text

This commit is contained in:
J. Ryan Stinnett 2019-10-28 14:23:11 +00:00
parent 88d0ae0572
commit 99fa100b92
2 changed files with 4 additions and 5 deletions

View file

@ -99,7 +99,7 @@ module.exports = createReactClass({
let desc;
if (this.props.serverRequiresIdServer && !haveIs) {
desc = _t(
"No Identity Server is configured so you cannot add add an email address in order to " +
"No identity server is configured so you cannot add an email address in order to " +
"reset your password in the future.",
);
} else {
@ -602,8 +602,8 @@ module.exports = createReactClass({
if (this.props.serverRequiresIdServer && !haveIs) {
noIsText = <div>
{_t(
"No Identity Server is configured: no email addreses can be added. " +
"You will be unable to reset your password.",
"No identity server is configured so you cannot add an email address in order to " +
"reset your password in the future.",
)}
</div>;
}