Commit d265ad3d authored by Ben Wheeler's avatar Ben Wheeler

show errorMsg content, not formatted message with errMsg as id

parent 2a318af2
...@@ -38,8 +38,8 @@ class RegistrationErrorStep extends React.Component { ...@@ -38,8 +38,8 @@ class RegistrationErrorStep extends React.Component {
<FormattedMessage id="registration.cantCreateAccount" /> <FormattedMessage id="registration.cantCreateAccount" />
</p> </p>
{this.props.errorMsg && ( {this.props.errorMsg && (
<p className="join-flow-instructions"> <p className="join-flow-instructions" id="registration-error-msg">
<FormattedMessage id={this.props.errorMsg} /> {this.props.errorMsg}
</p> </p>
)} )}
{this.props.canTryAgain ? ( {this.props.canTryAgain ? (
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment