From b7aed6ed7df2cea67924d34154671afb75edb7c2 Mon Sep 17 00:00:00 2001 From: eug-vs Date: Sat, 29 Aug 2020 15:34:17 +0300 Subject: fix: resovle eslint errors --- src/containers/Registration/Registration.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/containers/Registration') diff --git a/src/containers/Registration/Registration.tsx b/src/containers/Registration/Registration.tsx index fb2dc8c..a3aedb3 100644 --- a/src/containers/Registration/Registration.tsx +++ b/src/containers/Registration/Registration.tsx @@ -28,7 +28,7 @@ const validationSchema = Yup.object({ .required('This field is required'), password: Yup.string() .min(6, 'Should be at least 6 characters') - .required('This field is required'), + .required('This field is required') }); const useStyles = makeStyles(theme => ({ @@ -54,7 +54,7 @@ const useStyles = makeStyles(theme => ({ marginLeft: 10, color: 'green', cursor: 'pointer' - }, + } })); const Registration: React.FC = () => { @@ -71,7 +71,7 @@ const Registration: React.FC = () => { post('/users', { username, email, password }) .then(() => login(username, password)) .then(() => history.push(`/profile/${username}`)); - } + }; const toggleShowPassword = () => { setShowPassword(prevState => !prevState); @@ -118,7 +118,7 @@ const Registration: React.FC = () => { InputProps={{ endAdornment: ( - + {showPassword ? : } -- cgit v1.2.3