Fixes typo in signup page (#4807)

This commit is contained in:
Yajat Vishwakk 2022-11-21 09:36:01 +05:30 committed by GitHub
parent 7b4475b803
commit 39123f8af0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -268,7 +268,7 @@ class LoginPageComponent extends React.Component {
</form>
{!this.organizationId && configs?.form?.enabled && configs?.form?.enable_sign_up && (
<div className="text-center text-secondary mt-3" data-cy="sign-up-message">
{this.props.t('loginSignupPage.dontHaveAccount', `Don't have account yet?`)}&nbsp;
{this.props.t('loginSignupPage.dontHaveAccount', `Don't have an account yet?`)}&nbsp;
<Link to={'/signup'} tabIndex="-1" data-cy="sign-up-link">
{this.props.t('loginSignupPage.signUp', `Sign up`)}
</Link>