Remove arbitrary max 50 limit from email whitelist

Fix #3568
This commit is contained in:
Owen
2026-08-12 09:11:10 -04:00
parent 02e4fe8b48
commit 295e38d2af
5 changed files with 1 additions and 5 deletions
@@ -107,7 +107,6 @@ const createResourcePolicyBodySchema = z.strictObject({
})
)
)
.max(50)
.transform((v) => v.map((e) => e.toLowerCase()))
.optional()
.default([]),