We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e4c797 commit a20a8abCopy full SHA for a20a8ab
src/lib/zod/schema.ts
@@ -88,7 +88,7 @@ export const workBookSchema = z.object({
88
value === '' || value === null || value === undefined ? undefined : value.toLowerCase(),
89
)
90
.refine((value) => value === undefined || isValidUrlSlug(value), {
91
- message: '半角英小文字、数字、ハイフンのみ使用可能です',
+ message: '半角英小文字、半角数字、ハイフンのみ使用できます(数字のみは不可)',
92
}),
93
workBookTasks: z
94
.array(workBookTaskSchema)
0 commit comments