fix: max user profile length to db field length

Resolves: #9749
This commit is contained in:
amy bones 2023-03-22 02:10:43 -07:00
parent bcd0488cf1
commit 1f840aa7b9
No known key found for this signature in database
GPG key ID: 819528B765A64B82

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 = {