Skip to content

Commit

Permalink
feat: copy
Browse files Browse the repository at this point in the history
  • Loading branch information
Luciano Penafiel committed Oct 16, 2020
1 parent faf8b61 commit bddbf66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/Login/Login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ const Login = ({ errorService, handleLogin }: any): ReactElement => {
InputProps={{
inputProps: {
name: 'email',
ref: register({ required: 'Tienes que ingresar tu email' }),
ref: register({ required: 'Ingresá tu email' }),
},
}}
error={Boolean(errors.email)}
Expand All @@ -114,7 +114,7 @@ const Login = ({ errorService, handleLogin }: any): ReactElement => {
InputProps={{
inputProps: {
name: 'password',
ref: register({ required: 'Tienes que ingresar tu contraseña' }),
ref: register({ required: 'Ingresá tu contraseña' }),
},
}}
error={Boolean(errors.password)}
Expand Down

0 comments on commit bddbf66

Please sign in to comment.