diff --git a/webapp/src/pages/Bateria/Bateria.js b/webapp/src/pages/Bateria/Bateria.js index 443613c2..c0bebcb3 100644 --- a/webapp/src/pages/Bateria/Bateria.js +++ b/webapp/src/pages/Bateria/Bateria.js @@ -30,8 +30,16 @@ const JuegoPreguntas = () => { useEffect(() => { fetchQuestions(); handleTimer(); + // eslint-disable-next-line }, []); + useEffect(() => { + if (juegoTerminado && tiempoMedio !== 0) { + guardarPartida(); + } + // eslint-disable-next-line + }, [juegoTerminado, tiempoMedio]); + useEffect(() => { if (tiempoRestante === 0) { setJuegoTerminado(true); @@ -41,6 +49,7 @@ const JuegoPreguntas = () => { setTiempoMedio(tMedio); } } + // eslint-disable-next-line }, [tiempoRestante]); const fetchQuestions = () => {