diff --git a/webapp/src/components/Login/Login.js b/webapp/src/components/Login/Login.js index c95e039f..e846871c 100644 --- a/webapp/src/components/Login/Login.js +++ b/webapp/src/components/Login/Login.js @@ -13,8 +13,7 @@ import { AlertIcon, useColorMode, Switch, - Flex, - Spacer, + Flex } from "@chakra-ui/react"; import Footer from "../Footer/Footer"; diff --git a/webapp/src/components/Register/Register.js b/webapp/src/components/Register/Register.js index 27b327d8..421efdf5 100644 --- a/webapp/src/components/Register/Register.js +++ b/webapp/src/components/Register/Register.js @@ -12,7 +12,6 @@ import { Link, useColorMode, Flex, - Spacer, Switch } from "@chakra-ui/react"; import { useNavigate } from "react-router-dom"; diff --git a/webapp/src/pages/Bateria/Bateria.js b/webapp/src/pages/Bateria/Bateria.js index bad69955..cb866171 100644 --- a/webapp/src/pages/Bateria/Bateria.js +++ b/webapp/src/pages/Bateria/Bateria.js @@ -52,7 +52,7 @@ const JuegoPreguntas = () => { }, []); useEffect(() => { - if (tiempoRestante == 0) { + if (tiempoRestante === 0) { setJuegoTerminado(true); if(preguntasCorrectas+preguntasFalladas>0){ const preguntasTotales=preguntasCorrectas+preguntasFalladas; @@ -68,7 +68,7 @@ const JuegoPreguntas = () => { }, [tiempoRestante]); useEffect(() => { - if (juegoTerminado && tiempoMedio!=0) { + if (juegoTerminado && tiempoMedio !== 0) { guardarPartida(); } // eslint-disable-next-line @@ -186,7 +186,7 @@ const JuegoPreguntas = () => { diff --git a/webapp/src/pages/Clasico/Clasico.js b/webapp/src/pages/Clasico/Clasico.js index 0199602c..8f371aca 100644 --- a/webapp/src/pages/Clasico/Clasico.js +++ b/webapp/src/pages/Clasico/Clasico.js @@ -74,7 +74,7 @@ const JuegoPreguntas = () => { }, [tiempoRestante]); useEffect(() => { - if (tiempoRestante == 0) { + if (tiempoRestante === 0) { const newTTotal=tiempoTotal+(SECS_PER_QUESTION); setTiempoTotal(newTTotal); setPreguntaTerminada(true); @@ -224,7 +224,7 @@ const JuegoPreguntas = () => {

Tu puntuación: {puntuacion}/{preguntas.length}

- {preguntasFalladas == 0 ? ( + {preguntasFalladas === 0 ? ( Jordi Hurtado ¡Has acertado todas! Eres la cuenta secundaria de Jordi Hurtado. @@ -248,7 +248,7 @@ const JuegoPreguntas = () => {