Skip to content

Commit

Permalink
Fix organization filter validation
Browse files Browse the repository at this point in the history
  • Loading branch information
Onitoxan committed Apr 26, 2024
1 parent f9a9905 commit 7316f68
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export const FilterOrganizationsTable = (props: Props) => {
);

const FORM_VALIDATION = io.partial({
date: codecs.VALID_DAYJS_DATE,
date: io.union([codecs.VALID_DAYJS_DATE, io.null]),
});

const handleSubmit = (values: OrganizationFilterValues) => {
Expand Down

0 comments on commit 7316f68

Please sign in to comment.