You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The yup validation schema for the forms related to connection creation/editing need better typing. Currently we have some typecasting going on. Ideally, we should not.
Separated this out of the "main" connection form refactor PRs to keep the deliverables smaller.
Part of the fix will be the schedule type:
scheduleType: new yup.StringSchema<ConnectionScheduleType>().oneOf([
ConnectionScheduleType.manual,
ConnectionScheduleType.basic,
ConnectionScheduleType.cron,
]),
For clarification, this ticket should cover this TODO
The text was updated successfully, but these errors were encountered:
The yup validation schema for the forms related to connection creation/editing need better typing. Currently we have some typecasting going on. Ideally, we should not.
Separated this out of the "main" connection form refactor PRs to keep the deliverables smaller.
Part of the fix will be the schedule type:
For clarification, this ticket should cover this TODO
The text was updated successfully, but these errors were encountered: