Updated home link. Updated version info.

This commit is contained in:
Lucid Kobold
2021-12-13 21:22:54 -06:00
parent 57363a60da
commit 6ed098e463
4 changed files with 5 additions and 8 deletions

View File

@@ -42,10 +42,9 @@ interface Calendar {
// Will replace all states and be used in redis as a form of memoization.
interface MonthInfo {
date: Date;
format: string;
layout: Calendar;
startDay: string;
endDay: string;
startWeekday: string;
endWeekday: string;
days: number;
}
@@ -108,8 +107,6 @@ const CalenderContextProvider = ({
);
// Add start of selected month and start of next month, including day of week and numerical day.
const [calendar, setCalendar] = useState<Calendar>({} as Calendar);
// TODO: Remove this state and all referenced to it once the date alignment algorithm is complete.
const [daysOfMonth, setDaysOfMonth] = useState<[number]>([1]);