Removed unused imports

This commit is contained in:
Lucid Kobold
2022-04-11 14:15:41 -05:00
parent a256cbd1e3
commit 76c0dfca91
3 changed files with 7 additions and 11 deletions

View File

@@ -240,8 +240,8 @@ const CalenderContextProvider = ({
}
};
// * Attempting to fix an issue with static generation where the date does not appear to be updating after initial generation.
const [currDate, setCurrDate] = useState<Date>(new Date);
// * Attempting to fix an issue with static generation where the date does not appear to be updating after initial generation.
const [currDate, setCurrDate] = useState<Date>(new Date());
const calenderContextValues: CalenderContextState = {
currDate,