Skip to content

Commit

Permalink
✨ Cambios finales - arreglado problemas de e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
coral2742 committed May 7, 2024
1 parent b72260d commit 60ce61b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions webapp/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ function App() {
<Typography component="div" align="center" sx={{ marginTop: 2 }}>

{showLogin ? (
// eslint-disable-next-line jsx-a11y/anchor-is-valid
<a onClick={handleToggleView} className='gotoregister'>

<button onClick={handleToggleView} className='gotoregister' style={{ border: 'none', background: 'none', color: 'inherit', cursor: 'pointer', textDecoration: 'underline' }}>
¿No tienes una cuenta? Regístrate aquí.
</a>
) : (
// eslint-disable-next-line jsx-a11y/anchor-is-valid
<a onClick={handleToggleView} className='gotoregister'>
</button>
) : (
<button onClick={handleToggleView} className='gotoregister' style={{ border: 'none', background: 'none', color: 'inherit', cursor: 'pointer', textDecoration: 'underline' }}>
¿Ya tienes cuenta? Inicia sesión aquí.
</a>
</button>

)}

</Typography>
Expand Down

0 comments on commit 60ce61b

Please sign in to comment.