Remove dangerous logging

This commit is contained in:
Owen Schwartz 2024-12-22 12:03:46 -05:00
parent 3fb3be1f1e
commit 1361b47ef7
No known key found for this signature in database
GPG key ID: 8271FDFFD9E0CCBD
8 changed files with 190 additions and 36 deletions

View file

@ -16,7 +16,7 @@ const updateOrgParamsSchema = z.object({
const updateOrgBodySchema = z
.object({
name: z.string().min(1).max(255).optional(),
domain: z.string().min(1).max(255).optional(),
// domain: z.string().min(1).max(255).optional(),
})
.strict()
.refine((data) => Object.keys(data).length > 0, {