Skip to content

Commit

Permalink
Update Grad Years in Filter
Browse files Browse the repository at this point in the history
  • Loading branch information
JamieXiao committed Nov 14, 2024
1 parent 665f645 commit 11ee6e9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/config/gradYears.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
const GradYearList = [2020, 2021, 2022, 2023, 2024, 2025, 2026];
// const GradYearList = [2020, 2021, 2022, 2023, 2024, 2025, 2026];
const presentDate = new Date();
const presentYear = presentDate.getFullYear();
const GradYearList = [presentYear, presentYear+1, presentYear+2, presentYear+3, presentYear+4, presentYear+5, presentYear+6, presentYear+7, presentYear+8, presentYear+9, presentYear+10];
export const GradYears = GradYearList.map((v) => ({ label: v, value: v }));

0 comments on commit 11ee6e9

Please sign in to comment.