Updte logs
All checks were successful
Demo - Build & Deploy to Scaleway / build-and-push-image-lecoffre (push) Successful in 13s
Demo - Build & Deploy to Scaleway / deploy-to-scaleway-lecoffre (push) Successful in 3s

This commit is contained in:
Omar Oughriss 2025-07-28 11:40:33 +02:00
parent cb7bec391e
commit 22d585b14e

View File

@ -107,11 +107,17 @@ export default function DefaultNotaryDashboard(props: IProps) {
}, },
}; };
console.log('Query envoyée:', JSON.stringify(query, null, 2));
Folders.getInstance() Folders.getInstance()
.get(query) .get(query)
.then((folders) => setFolders(folders)); .then((folders) => {
console.log(JSON.stringify(query)); console.log('Dossiers reçus:', JSON.stringify(folders, null, 2));
console.log(JSON.stringify(folders)); setFolders(folders);
})
.catch((error) => {
console.error('Erreur lors de la récupération des dossiers:', error);
});
}, [isArchived]); }, [isArchived]);
return ( return (