diff --git a/src/screens/analytics_tools/index.tsx b/src/screens/analytics_tools/index.tsx index 86038497..3993cd06 100644 --- a/src/screens/analytics_tools/index.tsx +++ b/src/screens/analytics_tools/index.tsx @@ -103,7 +103,6 @@ const AnalyticsTools = () => { -
import("next-translate/Trans"), { ssr: false }); diff --git a/src/screens/network_guides/components/index.tsx b/src/screens/network_guides/components/index.tsx deleted file mode 100644 index fcc4ab3a..00000000 --- a/src/screens/network_guides/components/index.tsx +++ /dev/null @@ -1,4 +0,0 @@ -import Guide from "./guide"; -import NetworkInfo from "./network_info"; - -export { NetworkInfo, Guide }; diff --git a/src/screens/network_guides/components/network_info/components/index.tsx b/src/screens/network_guides/components/network_info/components/index.tsx deleted file mode 100644 index 2500d575..00000000 --- a/src/screens/network_guides/components/network_info/components/index.tsx +++ /dev/null @@ -1,3 +0,0 @@ -import InfoCard from "./info_card"; - -export { InfoCard }; diff --git a/src/screens/network_guides/components/network_info/index.tsx b/src/screens/network_guides/components/network_info/index.tsx index 7787c40a..71fb5f0e 100644 --- a/src/screens/network_guides/components/network_info/index.tsx +++ b/src/screens/network_guides/components/network_info/index.tsx @@ -22,7 +22,7 @@ import { CopyIcon } from "@src/components/icons"; import { getMiddleEllipsis } from "@src/utils/get_middle_ellipsis"; import { getNetworkInfo } from "@src/utils/network_info"; -import { InfoCard } from "./components"; +import InfoCard from "./components/info_card"; import { useNetworkGuidesHook } from "./hooks"; import * as styles from "./index.module.scss"; import { ContentBox, ContentCSS } from "./styles"; diff --git a/src/screens/network_guides/index.tsx b/src/screens/network_guides/index.tsx index ae786f3f..999ee075 100644 --- a/src/screens/network_guides/index.tsx +++ b/src/screens/network_guides/index.tsx @@ -4,7 +4,8 @@ import { useEffect } from "react"; import LayoutVal from "@src/components/layout_val"; import AppApolloProvider from "@src/utils/apollo"; -import { Guide, NetworkInfo } from "./components"; +import Guide from "./components/guide"; +import NetworkInfo from "./components/network_info"; import * as styles from "./index.module.scss"; import { LaptopCSS } from "./styles"; diff --git a/src/screens/tag/components/index.tsx b/src/screens/tag/components/index.tsx deleted file mode 100644 index b9b803e9..00000000 --- a/src/screens/tag/components/index.tsx +++ /dev/null @@ -1,3 +0,0 @@ -import TagPosts from "./tag_posts"; - -export { TagPosts }; diff --git a/src/screens/tag/index.tsx b/src/screens/tag/index.tsx index 23a7c680..2d74e9ac 100644 --- a/src/screens/tag/index.tsx +++ b/src/screens/tag/index.tsx @@ -5,7 +5,7 @@ import Layout from "@src/components/layout"; import Tags from "@src/components/tags"; import TitlePosts from "../blog/components/title_posts"; -import { TagPosts } from "./components"; +import TagPosts from "./components/tag_posts"; import { useBlogHook } from "./hooks"; import * as styles from "./index.module.scss";