improvement: address feedback

This commit is contained in:
Scott Wilson
2025-03-03 15:11:48 -08:00
parent 4382825162
commit 53605c3880

View File

@@ -55,7 +55,7 @@ const formSchema = z
ctx.addIssue({
code: z.ZodIssueCode.custom,
path: ["targetWorkspace"],
message: "Required"
message: "Bitbucket Workspace required"
});
}
@@ -63,7 +63,7 @@ const formSchema = z
ctx.addIssue({
code: z.ZodIssueCode.custom,
path: ["targetRepo"],
message: "Required"
message: "Bitbucket Repo required"
});
}
@@ -71,7 +71,7 @@ const formSchema = z
ctx.addIssue({
code: z.ZodIssueCode.custom,
path: ["targetEnvironment"],
message: "Required"
message: "Bitbucket Deployment Environment required"
});
}
});