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;
}
};