From a002a63ad1c8b27de72642602564fb6eb0bfcf5a Mon Sep 17 00:00:00 2001 From: Joaquim Verges Date: Mon, 29 Jul 2024 15:23:30 +1200 Subject: [PATCH] lint --- src/app/page.tsx | 27 --------------------------- src/app/typescript/v5/sidebar.tsx | 2 +- 2 files changed, 1 insertion(+), 28 deletions(-) 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);