slightly different compose

This commit is contained in:
2024-01-03 10:35:39 -07:00
parent 654f2be54c
commit 42a9922afa
6 changed files with 24 additions and 77 deletions

View File

@@ -15,6 +15,7 @@ public class SemesterPlanner
{
var month = ((startDate.Month + monthDiff - 1) % 12) + 1;
var year = startDate.Year + ((startDate.Month + monthDiff - 1) / 12);
return new CalendarMonth(year, month);
});
}