From c35ab4b47da3b692b6323c3242b8adcdfb2c0a40 Mon Sep 17 00:00:00 2001 From: ggurdin <46800240+ggurdin@users.noreply.github.com> Date: Fri, 9 May 2025 12:31:47 -0400 Subject: [PATCH] chore: replace call to send function with call to choreographer send function (#2746) --- lib/pages/chat/chat.dart | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/pages/chat/chat.dart b/lib/pages/chat/chat.dart index b11855593..dd51089fe 100644 --- a/lib/pages/chat/chat.dart +++ b/lib/pages/chat/chat.dart @@ -327,7 +327,10 @@ class ChatController extends State if (!HardwareKeyboard.instance.isShiftPressed && evt.logicalKey.keyLabel == 'Enter') { if (evt is KeyDownEvent) { - send(); + // #Pangea + // send(); + choreographer.send(context); + // Pangea# } return KeyEventResult.handled; } else {