Fix React nesting error in create key backup

This commit is contained in:
J. Ryan Stinnett 2019-01-08 10:55:01 -06:00
parent 91a7c146e4
commit 2bfe6e7500

View file

@ -355,7 +355,7 @@ export default React.createClass({
return <div> return <div>
<p>{_t("Make a copy of this Recovery Key and keep it safe.")}</p> <p>{_t("Make a copy of this Recovery Key and keep it safe.")}</p>
<p>{bodyText}</p> <p>{bodyText}</p>
<p className="mx_CreateKeyBackupDialog_primaryContainer"> <div className="mx_CreateKeyBackupDialog_primaryContainer">
<div className="mx_CreateKeyBackupDialog_recoveryKeyHeader"> <div className="mx_CreateKeyBackupDialog_recoveryKeyHeader">
{_t("Your Recovery Key")} {_t("Your Recovery Key")}
</div> </div>
@ -372,7 +372,7 @@ export default React.createClass({
</button> </button>
</div> </div>
</div> </div>
</p> </div>
</div>; </div>;
}, },