We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e327bae commit aeaeab8Copy full SHA for aeaeab8
packages/db/src/schema/system.ts
@@ -12,7 +12,7 @@ export const systemSchema = z.object({
12
name: z
13
.string()
14
.min(3, { message: "System name must be at least 3 characters long." })
15
- .max(30, { message: "System Name must be at most 30 characters long." }),
+ .max(100, { message: "System Name must be at most 100 characters long." }),
16
slug: z
17
18
.min(3, { message: "Slug must be at least 3 characters long." })
0 commit comments