Update version info

This commit is contained in:
Lucid Kobold
2022-04-01 16:13:05 -05:00
parent 24f212e5b3
commit 96438df8a5
3 changed files with 9 additions and 9 deletions

View File

@@ -24,8 +24,8 @@ import {
Field,
FieldProps
} from "formik";
import { format } from "date-fns"
import findValidDateRange from "../../lib/findValidDateRange"
import { format } from "date-fns";
import findValidDateRange from "../../lib/findValidDateRange";
import FormValidateEmoji from "./FormValidateEmoji";
import { CalenderContext } from "../../contexts/CalenderContext";
@@ -220,13 +220,13 @@ const DatePicker = (): JSX.Element => {
max={format(validDateRange.end, "yyyy-MM-dd")}
{...(!form.errors.date && form.touched.date
? {
borderColor: "brand.valid",
boxShadow: "0 0 0 1px #00c17c",
_hover: {
borderColor: "brand.valid",
boxShadow: "0 0 0 1px #00c17c"
boxShadow: "0 0 0 1px #00c17c",
_hover: {
borderColor: "brand.valid",
boxShadow: "0 0 0 1px #00c17c"
}
}
}
: "")}
/>
{!form.touched.date && (