Skip to content

Commit

Permalink
Make prefix optional in UI (#2358)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamakase committed Mar 8, 2021
1 parent 6c6784b commit 960b19c
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 @@ const ControlLabelsWithMargin = styled(ControlLabels)`

const connectionValidationSchema = yup.object().shape({
frequency: yup.string().required("form.empty.error"),
prefix: yup.string().required("form.empty.error"),
prefix: yup.string(),
});

const FrequencyForm: React.FC<IProps> = ({
Expand Down

0 comments on commit 960b19c

Please sign in to comment.