rephrase error messages

This commit is contained in:
Maidul Islam
2024-08-08 18:15:13 -04:00
parent bb52e2beb4
commit 5176e70437
4 changed files with 4 additions and 4 deletions

View File

@@ -597,7 +597,7 @@ export const RAW_SECRETS = {
environment: "The slug of the environment to list secrets from.",
secretPath: "The secret path to list secrets from.",
includeImports: "Weather to include imported secrets or not.",
tagSlugs: "The comma seperated tag slugs to filter secrets"
tagSlugs: "The comma separated tag slugs to filter secrets"
},
CREATE: {
secretName: "The name of the secret to create.",

View File

@@ -158,7 +158,7 @@ export const registerSecretTagRouter = async (server: FastifyZodProvider) => {
.trim()
.describe(SECRET_TAGS.UPDATE.slug)
.refine((v) => slugify(v) === v, {
message: "Invalid slug. Should contain only characters, numbers and hyphen."
message: "Invalid slug. Slug can only contain alphanumeric characters and hyphens."
}),
color: z.string().trim().describe(SECRET_TAGS.UPDATE.color)
}),

View File

@@ -93,7 +93,7 @@ const createTagSchema = z.object({
.trim()
.toLowerCase()
.refine((v) => slugify(v) === v, {
message: "Invalid slug. Should contain only characters, numbers and hyphen."
message: "Invalid slug. Slug can only contain alphanumeric characters and hyphens."
}),
color: z.string().trim()
});

View File

@@ -11,7 +11,7 @@ import { UsePopUpState } from "@app/hooks/usePopUp";
const schema = z.object({
slug: z.string().refine((v) => slugify(v) === v, {
message: "Invalid slug. Should contain only characters, numbers and hyphen."
message: "Invalid slug. Slug can only contain alphanumeric characters and hyphens."
})
});