fix: fixed extra space error

This commit is contained in:
Deven Joshi
2021-01-06 17:14:55 +05:30
parent 1927a632e0
commit 9bbad0b9e2
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -287,7 +287,7 @@ class ChannelPreview extends StatelessWidget {
));
} else {
resList.add(TextSpan(
text: '$e ',
text: e == textList.last ? '$e' : '$e ',
style: normalTextStyle,
));
}
+1 -1
View File
@@ -183,7 +183,7 @@ class MessageSearchItem extends StatelessWidget {
));
} else {
resList.add(TextSpan(
text: '$e ',
text: e == textList.last ? '$e' : '$e ',
style: normalTextStyle,
));
}