Merge branch 'develop' of codeberg.org:calckey/calckey into develop

This commit is contained in:
ThatOneCalculator 2023-03-22 12:24:45 -07:00
commit 18eed9607b
No known key found for this signature in database
GPG key ID: 8703CACD01000000

View file

@ -66,7 +66,7 @@ const nameSchema = { type: "string", minLength: 1, maxLength: 50 } as const;
const descriptionSchema = {
type: "string",
minLength: 1,
maxLength: 500,
maxLength: 2048,
} as const;
const locationSchema = { type: "string", minLength: 1, maxLength: 50 } as const;
const birthdaySchema = {