Comment out for debbuging

This commit is contained in:
Omar Oughriss 2025-07-28 10:58:29 +02:00
parent bb1dea088f
commit 3cb0b16c16

View File

@ -31,12 +31,14 @@ export default function Folder() {
},
})
.then((folders) => {
if (folders.length > 0)
router.push(
Module.getInstance()
.get()
.modules.pages.Folder.pages.FolderInformation.props.path.replace("[folderUid]", folders[0]?.uid ?? ""),
);
if (folders.length > 0) {
console.log("Liste des dossiers:", JSON.stringify(folders));
// router.push(
// Module.getInstance()
// .get()
// .modules.pages.Folder.pages.FolderInformation.props.path.replace("[folderUid]", folders[0]?.uid ?? ""),
// );
}
});
}, [router]);
return (