Fix: Remove debugging logs

This commit is contained in:
Daniel Hougaard
2024-03-20 13:14:18 +01:00
parent e5e494d0ee
commit 12c414817f

View File

@@ -105,12 +105,6 @@ export const useGetFoldersByEnv = ({
if (selectedEnvIndex !== -1) {
const currentlyBrowsingPath = queryParams.get("secretPath") || "";
if (env === "staging") {
console.log("selectedEnvIndex", selectedEnvIndex);
console.log(`name /${name}`);
console.log("importedFolders", folders?.[selectedEnvIndex]?.data?.importedFolders);
}
const isPresent = folders?.[selectedEnvIndex]?.data?.importedFolders.find(
({ importPath }) => importPath === `${currentlyBrowsingPath}/${name}`
);