Skip to content

Commit

Permalink
ci fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rakeshsharma14317 committed Sep 11, 2023
1 parent 5a98e5e commit 0d1d099
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion web-common/src/features/sources/modal/yupSchemas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,10 @@ export function getYupSchema(connector: V1ConnectorSpec) {
return yup.object().shape({
path: yup
.string()
.matches(/^azblob:\/\//, "Must be an Azure URI (e.g. azblob://container/path)")
.matches(
/^azblob:\/\//,
"Must be an Azure URI (e.g. azblob://container/path)"
)
.required("Path is required"),
sourceName: yup
.string()
Expand Down

0 comments on commit 0d1d099

Please sign in to comment.