diff --git a/src/components/types/team.ts b/src/components/types/team.ts index 93002b2..f3e2f1e 100644 --- a/src/components/types/team.ts +++ b/src/components/types/team.ts @@ -17,12 +17,12 @@ * along with this program. If not, see . */ -import {z} from "zod"; +import { z } from "zod"; export const TeamSchema = z.object({ id: z.number(), name: z.string(), - kuerzel: z.string().min(1).max(4), + kuerzel: z.string().min(1).max(16), color: z.string().max(1), });