renames radioGroup to radio

This commit is contained in:
James
2020-06-12 09:32:58 -04:00
parent ca76b02473
commit 578f61ebb5
10 changed files with 14 additions and 14 deletions

View File

@@ -136,7 +136,7 @@ const optionsToValidatorMap = {
if (value && value.length > 0) return true;
return 'This field is required.';
},
radioGroup: (value) => {
radio: (value) => {
if (value) return true;
return 'This field is required.';
},