TermEvent->TermPage for consistency
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Jared He 2021-11-16 20:23:30 -06:00
parent e5fd9bfec9
commit 131a667ddf
1 changed files with 2 additions and 2 deletions

View File

@ -2,9 +2,9 @@ import { GetStaticProps } from "next";
import { getCurrentTerm, getEventsPageProps } from "@/lib/events";
import TermEvent, { Props } from "./[year]/[term]";
import TermPage, { Props } from "./[year]/[term]";
export default TermEvent;
export default TermPage;
export const getStaticProps: GetStaticProps<Props> = async () => {
return { props: await getEventsPageProps(getCurrentTerm()) };