From f5a83b0032140cec609050cf47a6ddec9cf1dfc5 Mon Sep 17 00:00:00 2001 From: Kalle <38327916+Sendouc@users.noreply.github.com> Date: Sun, 14 Apr 2024 14:04:30 +0300 Subject: [PATCH] Increase tournament rules max length --- app/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/constants.ts b/app/constants.ts index 12a6bc631..f3d3f49d7 100644 --- a/app/constants.ts +++ b/app/constants.ts @@ -21,7 +21,7 @@ export const CALENDAR_EVENT = { NAME_MIN_LENGTH: 2, NAME_MAX_LENGTH: 100, DESCRIPTION_MAX_LENGTH: 3000, - RULES_MAX_LENGTH: 4000, + RULES_MAX_LENGTH: 10_000, DISCORD_INVITE_CODE_MAX_LENGTH: 50, BRACKET_URL_MAX_LENGTH: 200, MAX_AMOUNT_OF_DATES: 5,