From 78d7569a5b6964ecc873a650e4a5858faa6f8444 Mon Sep 17 00:00:00 2001 From: ggurdin Date: Mon, 23 Jun 2025 13:46:59 -0400 Subject: [PATCH] chore: make emote size message length match --- lib/config/app_config.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/config/app_config.dart b/lib/config/app_config.dart index 55123234c..734869ecc 100644 --- a/lib/config/app_config.dart +++ b/lib/config/app_config.dart @@ -54,7 +54,7 @@ abstract class AppConfig { final bigEmotes = event != null && event.onlyEmotes && event.numberEmotes > 0 && - event.numberEmotes <= 10; + event.numberEmotes <= 3; return TextStyle( color: textColor,