From 4e6db4e4db56a816a72221be40070c8243492283 Mon Sep 17 00:00:00 2001 From: bidof Date: Wed, 1 May 2024 03:55:12 +0200 Subject: [PATCH] test --- webapp/src/components/history/History.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/webapp/src/components/history/History.js b/webapp/src/components/history/History.js index 84c5749..4996146 100644 --- a/webapp/src/components/history/History.js +++ b/webapp/src/components/history/History.js @@ -49,6 +49,10 @@ export function History({darkMode}){ }) .catch(error => { //console.error('Error cargando el historial de todas las partidas del usuario:', error); + }) .finally(() => { + console.log('setIsLoadingGames a false finally '); + + setIsLoadingGames(false); }); }, [gamesEndpoint]);//<-cambiar el array de depencias error despliegue @@ -74,6 +78,9 @@ export function History({darkMode}){ }) .catch(error => { //console.error('Error cargando las estadísticas del usuario:', error); + }).finally(() => { + console.log('setIsLoadingStats a false finally '); + setIsLoadingStats(false); }); }, [statisticsEndpoint]);//<- cambiar el array de depencias error despliegue