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 768f781 commit 4f985a2Copy full SHA for 4f985a2
apps/studio/pages/new/[slug].tsx
@@ -111,6 +111,7 @@ const FormSchema = z.object({
111
}),
112
projectName: z
113
.string()
114
+ .trim()
115
.min(1, 'Please enter a project name.') // Required field check
116
.min(3, 'Project name must be at least 3 characters long.') // Minimum length check
117
.max(64, 'Project name must be no longer than 64 characters.'), // Maximum length check
0 commit comments