fix minor linting errors

This commit is contained in:
catarak 2016-06-24 14:03:32 -04:00
parent 3d42da18a8
commit baa2c121f0
2 changed files with 3 additions and 2 deletions

View File

@ -26,7 +26,7 @@ class Nav extends React.Component {
<ul className="nav__items-right">
<li className="nav__item">
{this.props.user.authenticated && <p>Hello, {this.props.user.username}!</p>}
{!this.props.user.authenticated && <p><Link to='/login'>Login</Link> or <Link to='/signup'>Sign Up</Link></p>}
{!this.props.user.authenticated && <p><Link to="/login">Login</Link> or <Link to="/signup">Sign Up</Link></p>}
</li>
</ul>
</nav>

View File

@ -38,7 +38,8 @@ class SignupForm extends React.Component {
<p className="signup-form__field">
<label
className="signup-form__confirm-password-label"
htmlFor="confirm-password">
htmlFor="confirm-password"
>
Confirm Password:
</label>
<input