diff --git a/src/state/reducers/mentors.ts b/src/state/reducers/mentors.ts index 13ac86be..8745df45 100644 --- a/src/state/reducers/mentors.ts +++ b/src/state/reducers/mentors.ts @@ -116,8 +116,8 @@ const withSelectedSkills = : true; const withVacationing = - (showVacation: boolean) => (mentor: mentorsApi.Mentor) => - showVacation ? !mentor.is_vacationing : true; + (hideVacationing: boolean) => (mentor: mentorsApi.Mentor) => + hideVacationing ? !mentor.is_vacationing : true; export const selectMentorList = (appState: types.AppState) => { const remoteMentors = get(appState);