fix: increase max length for groups and spaces (#1840)

This commit is contained in:
Philip Okugbe
2026-01-13 15:31:03 +00:00
committed by GitHub
parent 732951a322
commit 8fc8422fbc
4 changed files with 8 additions and 7 deletions
@@ -9,7 +9,7 @@ import { useTranslation } from "react-i18next";
import { zodResolver } from 'mantine-form-zod-resolver';
const formSchema = z.object({
name: z.string().trim().min(2).max(50),
name: z.string().trim().min(2).max(100),
description: z.string().max(500),
});