From 33451fa519fb74e0a62842b80bb69bfbe6c073b6 Mon Sep 17 00:00:00 2001 From: 14Kgun Date: Tue, 24 Oct 2023 21:47:31 +0900 Subject: [PATCH] Remove: EventSection2023FallResult --- src/pages/Home/EventSection/index.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/pages/Home/EventSection/index.tsx b/src/pages/Home/EventSection/index.tsx index 4e2892327..2334eb0ad 100644 --- a/src/pages/Home/EventSection/index.tsx +++ b/src/pages/Home/EventSection/index.tsx @@ -1,5 +1,4 @@ import EventSection2023Fall from "./EventSection2023Fall"; -import EventSection2023FallResult from "./EventSection2023FallResult"; import EventSection2023Spring from "./EventSection2023Spring"; import { eventMode } from "tools/loadenv"; @@ -11,7 +10,7 @@ const EventSection = () => { case "2023fall": return ; default: - return ; + return null; } };