Skip to content

Commit

Permalink
Update interview scheduling to WI21. (#206)
Browse files Browse the repository at this point in the history
  • Loading branch information
godwinpang committed Mar 26, 2021
1 parent 6e10d54 commit c95dfb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/pages/InterviewSchedulingPage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export default function InterviewSchedulingPage(): JSX.Element {
useEffect(() => {
const getInterviewWeekStartDateFunc = async () => {
// hardcoded induction class for now
const res: InterviewDatesResponse = await getInterviewStartDates('FA20');
const res: InterviewDatesResponse = await getInterviewStartDates('WI21');
const interviewStartDateObjs: Date[] = res.interviewWeeks.map(
(interviewWeekStartDate: InterviewWeekStartDate) => {
return parseISO(interviewWeekStartDate.startDate);
Expand Down

0 comments on commit c95dfb0

Please sign in to comment.