This commit is contained in:
David Baker 2019-01-18 18:43:40 +00:00
parent 970880737e
commit 630a6a479b
6 changed files with 20 additions and 19 deletions

View file

@ -42,11 +42,11 @@ export default class VerificationShowSas extends React.Component {
const HexVerify = sdk.getComponent('views.elements.HexVerify');
return <div>
<p>{_t(
"Verify this user by confirming the following number appears on their screen"
"Verify this user by confirming the following number appears on their screen",
)}</p>
<p>{_t(
"For maximum security, we reccommend you do this in person or use another " +
"trusted means of communication"
"trusted means of communication",
)}</p>
<HexVerify text={this.props.sas}
onVerifiedStateChange={this._onVerifiedStateChange}
@ -62,4 +62,4 @@ export default class VerificationShowSas extends React.Component {
/>
</div>;
}
};
}