From 3a5fbeef1ecb9f2e85bd760b145df857a4fdcb25 Mon Sep 17 00:00:00 2001 From: Kalle <38327916+Sendouc@users.noreply.github.com> Date: Sun, 22 Sep 2024 13:54:48 +0300 Subject: [PATCH] Increase team max member count from 8 to 10 --- app/features/team/team-constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/features/team/team-constants.ts b/app/features/team/team-constants.ts index 565c74fcc..323ef5183 100644 --- a/app/features/team/team-constants.ts +++ b/app/features/team/team-constants.ts @@ -3,7 +3,7 @@ export const TEAM = { NAME_MIN_LENGTH: 2, BIO_MAX_LENGTH: 2000, TWITTER_MAX_LENGTH: 50, - MAX_MEMBER_COUNT: 8, + MAX_MEMBER_COUNT: 10, MAX_TEAM_COUNT_NON_PATRON: 2, MAX_TEAM_COUNT_PATRON: 5, };