diff --git a/apps/web/src/app/main/home/components/HeroSection.tsx b/apps/web/src/app/main/home/components/HeroSection.tsx
index 192761f..4718835 100755
--- a/apps/web/src/app/main/home/components/HeroSection.tsx
+++ b/apps/web/src/app/main/home/components/HeroSection.tsx
@@ -53,7 +53,7 @@ const HeroSection = () => {
useEffect(() => {
const count = countNonZeroValues(statistics);
- console.log(count);
+ //console.log(count);
setCountStatistics(count);
}, [statistics]);
return (
diff --git a/apps/web/src/app/main/paths/page.tsx b/apps/web/src/app/main/paths/page.tsx
index e1283a0..9624011 100755
--- a/apps/web/src/app/main/paths/page.tsx
+++ b/apps/web/src/app/main/paths/page.tsx
@@ -1,5 +1,6 @@
import MindEditor from "@web/src/components/common/editor/MindEditor";
export default function PathsPage() {
- return ;
+ // return ;
+ return <>123>
}
diff --git a/apps/web/src/components/layout/breadcrumb.tsx b/apps/web/src/components/layout/breadcrumb.tsx
index 1804dab..bffbb65 100755
--- a/apps/web/src/components/layout/breadcrumb.tsx
+++ b/apps/web/src/components/layout/breadcrumb.tsx
@@ -1,38 +1,42 @@
-import React from 'react';
-import { useLocation, Link, useMatches } from 'react-router-dom';
-import { theme } from 'antd';
-import { RightOutlined } from '@ant-design/icons';
+import React from "react";
+import { useLocation, Link, useMatches } from "react-router-dom";
+import { theme } from "antd";
+import { RightOutlined } from "@ant-design/icons";
export default function Breadcrumb() {
- let matches = useMatches();
- const { token } = theme.useToken()
+ const matches = useMatches();
+ const { token } = theme.useToken();
- let crumbs = matches
- // first get rid of any matches that don't have handle and crumb
- .filter((match) => Boolean((match.handle as any)?.crumb))
- // now map them into an array of elements, passing the loader
- // data to each one
- .map((match) => (match.handle as any).crumb(match.data));
+ const crumbs = matches
+ // first get rid of any matches that don't have handle and crumb
+ .filter((match) => Boolean((match.handle as any)?.crumb))
+ // now map them into an array of elements, passing the loader
+ // data to each one
+ .map((match) => (match.handle as any).crumb(match.data));
- return (
-