Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/components/SistentNavigation/intra-page.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ function IntraPage() {

useEffect(() => {
const anchors = document.querySelectorAll(".main-content > a");
console.log(anchors);
if (anchors) {
setContents(
Array.from(anchors).map((a) => ({
Expand Down
2 changes: 0 additions & 2 deletions src/sections/Home/So-Special-Section/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,6 @@ const SoSpecial = () => {
<Button className="special-cont_btn" $url={fields.slug} key={id}>
<div id="special-cont" >
<div id="special-cont_img">
{/* {console.log("Dark Thumbnail:", frontmatter.darkthumbnail)}
{console.log("Thumbnail:", frontmatter.thumbnail)} */}
<Image
{...(frontmatter.thumbnail || frontmatter.thumbnail_svg)}
imgStyle={{ objectFit: "contain" }}
Expand Down
5 changes: 0 additions & 5 deletions src/sections/Learn-Layer5/Course-Overview/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -162,11 +162,6 @@ const CourseOverview = ({ course, chapters, serviceMeshesList, children }) => {
</Col>
<Col $md={12} $lg={4} $xl={5}>
<div className="service-meshes-you-can-learn">
{console.log(
"lenght of the service mesh array: ",
availableServiceMeshes.length,
)}
{console.log("array: ", availableServiceMeshes)}
{serviceMeshImages.length !== 0 &&
availableServiceMeshesWithImages.length != 0 && (
<>
Expand Down
2 changes: 1 addition & 1 deletion src/sections/Meshery/Features-Col/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ const Features = () => {
}
})
.catch((error) => {
console.log("Failed to fetch performance count:", error.message);
console.error("Failed to fetch performance count:", error.message);
// Keep default value of 0 if fetch fails
});
}, []);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const CatalogGrid = ({ frontmatter }) => {
const data = response.data;
setDesign(data);
} catch (error) {
console.log("There was a problem with your fetch operation:", error);
console.error("There was a problem with your fetch operation:", error);
}
};

Expand Down