diff --git a/src/app/page.tsx b/src/app/page.tsx index aeac6741..03b8bda1 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -34,7 +34,6 @@ import { EcosystemWalletsIcon, } from "@/icons"; import { UnrealIcon } from "../icons/sdks/UnrealIcon"; -import Head from "next/head"; // import { LandingPageCTAs } from "./landing-page/CTAs"; export default function Page() { @@ -42,7 +41,6 @@ export default function Page() {
{/* */} - {/* */} @@ -351,31 +349,6 @@ function EngineSection() { ); } -function SDKSection() { - return ( -
- - - - - - - - - - -
- ); -} - function SectionTitle(props: { title: string; id: string; diff --git a/src/app/typescript/v5/sidebar.tsx b/src/app/typescript/v5/sidebar.tsx index e7436359..bafd9e21 100644 --- a/src/app/typescript/v5/sidebar.tsx +++ b/src/app/typescript/v5/sidebar.tsx @@ -373,7 +373,7 @@ export const sidebar: SideBar = { }) ?.reduce( (acc, f) => { - const [_, extensionName] = getCustomTag(f) || []; + const [, extensionName] = getCustomTag(f) || []; if (extensionName) { acc[extensionName] = acc[extensionName] || []; acc[extensionName].push(f);