null groups are valid

Signed-off-by: Ryan Vazquez <ryanv@spotify.com>
This commit is contained in:
Ryan Vazquez
2021-05-24 17:36:03 -04:00
parent 1cfef4244e
commit fffd1af6c0
+1 -1
View File
@@ -23,7 +23,7 @@ import { ConfigContextProps } from '../hooks/useConfig';
const schema = yup
.object()
.shape({
group: yup.string(),
group: yup.string().nullable(),
project: yup.string().nullable(),
})
.required();