From c6513f922b12c478829d1708e243306da58a27a8 Mon Sep 17 00:00:00 2001 From: John Livingston Date: Mon, 10 Jun 2024 17:17:15 +0200 Subject: [PATCH] Custom emojis: increasing the limit. --- shared/lib/emojis.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/lib/emojis.ts b/shared/lib/emojis.ts index 536a2ca2..87e6f061 100644 --- a/shared/lib/emojis.ts +++ b/shared/lib/emojis.ts @@ -6,4 +6,4 @@ export const maxSize: number = 30 * 1024 export const allowedExtensions = ['png', 'jpg', 'jpeg', 'gif'] export const inputFileAccept = ['image/jpg', 'image/png', 'image/gif'] export const allowedMimeTypes = ['image/jpg', 'image/png', 'image/gif'] -export const maxEmojisPerChannel = 100 +export const maxEmojisPerChannel = 200