chore: remove unneed code

This commit is contained in:
Rodolfo Ruiz
2025-08-04 20:37:07 -06:00
parent afdfeee79a
commit 7a6ac15aad
3 changed files with 40 additions and 52 deletions

View File

@@ -5,25 +5,25 @@ import { useNavigate } from 'react-router-dom';
import { Box, Typography } from '@mui/material';
export default function LoginPage() {
const { login } = useAuth();
const navigate = useNavigate();
const { login } = useAuth();
const navigate = useNavigate();
return (
<Box display="flex" flexDirection="column" alignItems="center" mt={10}>
<Typography variant="h4" gutterBottom>
Iniciar sesión
</Typography>
return (
<Box display="flex" flexDirection="column" alignItems="center" mt={10}>
<Typography variant="h4" gutterBottom>
Iniciar sesión
</Typography>
<GoogleLogin
onSuccess={(credentialResponse) => {
const user = jwt_decode(credentialResponse.credential);
login(user);
navigate('/');
}}
onError={() => {
console.log('Error al iniciar sesión');
}}
/>
</Box>
);
<GoogleLogin
onSuccess={(credentialResponse) => {
const user = jwt_decode(credentialResponse.credential);
login(user);
navigate('/');
}}
onError={() => {
console.log('Error al iniciar sesión');
}}
/>
</Box>
);
}