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

@@ -5,7 +5,6 @@ import {
getMonth,
sub,
getDate,
isSameDay,
isBefore,
endOfDay
} from "date-fns";
@@ -94,9 +93,7 @@ const Day = ({
w="100%"
h="100%"
_hover={{
cursor: isBefore(date, endOfDay(currDate))
? "pointer"
: "default",
cursor: isBefore(date, endOfDay(currDate)) ? "pointer" : "default",
background: "gray.700",
border: "1px solid #FFF",
color: "whiteAlpha.900"
@@ -135,9 +132,7 @@ const Day = ({
justifyContent="flex-start"
pt={2}
_hover={{
cursor: isBefore(date, endOfDay(currDate))
? "pointer"
: "default",
cursor: isBefore(date, endOfDay(currDate)) ? "pointer" : "default",
background: "gray.700",
border: "1px solid #FFF"
}}