Skip to content

Commit

Permalink
fixed more linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
b3njamint committed Oct 31, 2023
1 parent e101b8b commit 2a8a1fc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/pages/AnalyticsView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ const AnalyticsView = () => {
const currSem = currDate.getMonth() >= 8 && currDate.getMonth() < 13 ? 'FA' : 'SP';
const currYearTwo = currDate.getFullYear() % 100;

let startMonth, endMonth;
let startMonth;
let endMonth;
if (currDate.getMonth() >= 7) {
startMonth = 7; // August
endMonth = 11; // December
Expand Down

0 comments on commit 2a8a1fc

Please sign in to comment.