From e8d1bba77cf0d1670ab2fbc4dd218b5437ce2392 Mon Sep 17 00:00:00 2001 From: ggurdin <46800240+ggurdin@users.noreply.github.com> Date: Thu, 16 Jan 2025 13:12:20 -0500 Subject: [PATCH] fix: don't hide message at end of IT (#1480) --- lib/pangea/choreographer/controllers/igc_controller.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/pangea/choreographer/controllers/igc_controller.dart b/lib/pangea/choreographer/controllers/igc_controller.dart index 462500d6e..b7adb7893 100644 --- a/lib/pangea/choreographer/controllers/igc_controller.dart +++ b/lib/pangea/choreographer/controllers/igc_controller.dart @@ -79,7 +79,8 @@ class IgcController { // if tokenizing on message send, tokenization might take a while // so add a fake event to the timeline to visually indicate that the message is being sent - if (onlyTokensAndLanguageDetection) { + if (onlyTokensAndLanguageDetection && + choreographer.choreoMode != ChoreoMode.it) { choreographer.chatController.sendFakeMessage(); }