Skip to content

Commit

Permalink
Rename for clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
rottabonus committed Nov 4, 2023
1 parent a42e7d2 commit 08b4ab6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/state/reducers/mentors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 08b4ab6

Please sign in to comment.