diff --git a/src/forge/Main/CoderDepotCatalogue.jsx b/src/forge/Main/CoderDepotCatalogue.jsx
index f13fded2..7f0b2c96 100644
--- a/src/forge/Main/CoderDepotCatalogue.jsx
+++ b/src/forge/Main/CoderDepotCatalogue.jsx
@@ -20,9 +20,6 @@ function CoderDepotCatalogue({item , goToSubRoot , owner , projectsId , platform
return value;
}
- useEffect(()=>{
-
- },[])
return(
@@ -31,9 +28,15 @@ function CoderDepotCatalogue({item , goToSubRoot , owner , projectsId , platform
(!platform && item.image_type) ?
{item.name}
:
- goToSubRoot(item.path,item.type,item.name)} className={item.type === "submodule" ? "submoduleStyle":''}>
- {item.name}
-
+ (item.type === "submodule" ?
+
+ {item.name}
+
+ :
+ goToSubRoot(item.path,item.type,item.name)}>
+ {item.name}
+
+ )
}