Skip to content

Commit

Permalink
10049 - clean up variable names
Browse files Browse the repository at this point in the history
  • Loading branch information
Absolutestunna committed Sep 14, 2023
1 parent 48c35a8 commit 5b1d48f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ export const setJudgeActivityReportFiltersAction = ({
store.set(state.judgeActivityReport.judgeName, selectedJudge);
}
if (filterStartDate || filterStartDate === '') {
store.set(state.judgeActivityReport.filters.startDate, props.startDate);
store.set(state.judgeActivityReport.filters.startDate, filterStartDate);
}
if (filterEndDate || filterEndDate === '') {
store.set(state.judgeActivityReport.filters.endDate, props.endDate);
store.set(state.judgeActivityReport.filters.endDate, filterEndDate);
}
};

0 comments on commit 5b1d48f

Please sign in to comment.