diff --git a/packages/web/src/pages/Home/EventSection/index.tsx b/packages/web/src/pages/Home/EventSection/index.tsx index 2b914ed2..1bddad61 100644 --- a/packages/web/src/pages/Home/EventSection/index.tsx +++ b/packages/web/src/pages/Home/EventSection/index.tsx @@ -1,7 +1,6 @@ import EventSection2023Fall from "./EventSection2023Fall"; import EventSection2023Spring from "./EventSection2023Spring"; import EventSection2024Fall from "./EventSection2024Fall"; -import EventSection2024FallResult from "./EventSection2024FallResult"; import EventSection2024Spring from "./EventSection2024Spring"; import { eventMode } from "@/tools/loadenv"; @@ -17,7 +16,7 @@ const EventSection = () => { case "2024fall": return ; default: - return ; + return null; } };