From eebe2ce171b57501046dffdf4c910f6dccb90811 Mon Sep 17 00:00:00 2001 From: Salvatore Giordano Date: Wed, 21 Oct 2020 10:30:40 +0200 Subject: [PATCH] fix message reaction modal --- lib/src/message_reactions_modal.dart | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/lib/src/message_reactions_modal.dart b/lib/src/message_reactions_modal.dart index 6ee5bf51..56e49382 100644 --- a/lib/src/message_reactions_modal.dart +++ b/lib/src/message_reactions_modal.dart @@ -130,14 +130,13 @@ class MessageReactionsModal extends StatelessWidget { spacing: 16, runSpacing: 22, alignment: WrapAlignment.start, - children: - message.latestReactions - .map((e) => _buildReaction( - e, - currentUser, - context, - )) - .toList(), + children: message.latestReactions + .map((e) => _buildReaction( + e, + currentUser, + context, + )) + .toList(), ), ), ),