Skip to content

Commit

Permalink
fix: updated semester logic
Browse files Browse the repository at this point in the history
  • Loading branch information
kimharr24 committed Mar 17, 2024
1 parent 3f7f814 commit 463171d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/backend/src/applications/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import { Semester } from './types';
export const getCurrentSemester = (): Semester => {
const month: number = new Date().getMonth();
if (month >= 0 && month <= 5) {
return Semester.SPRING;
return Semester.FALL; // We will be recruiting for the fall semester during Jan - Jun
}
return Semester.FALL;
return Semester.SPRING; // We will be recruiting for the spring semester during Jul - Dec
};

export const getCurrentYear = (): number => {
Expand Down

0 comments on commit 463171d

Please sign in to comment.