diff --git a/lib/components/chat_history/twitch/host_event.dart b/lib/components/chat_history/twitch/host_event.dart index 5a5adaafb..706788a26 100644 --- a/lib/components/chat_history/twitch/host_event.dart +++ b/lib/components/chat_history/twitch/host_event.dart @@ -24,7 +24,6 @@ class TwitchHostEventWidget extends StatelessWidget { TextSpan( text: _formatter.format(model.viewers), style: Theme.of(context).textTheme.titleSmall), - const TextSpan(text: "."), ], )), ); diff --git a/lib/components/chat_history/twitch/raid_event.dart b/lib/components/chat_history/twitch/raid_event.dart index 6017855e4..6c195456b 100644 --- a/lib/components/chat_history/twitch/raid_event.dart +++ b/lib/components/chat_history/twitch/raid_event.dart @@ -31,7 +31,6 @@ class TwitchRaidEventWidget extends StatelessWidget { TextSpan( text: _formatter.format(model.viewers), style: Theme.of(context).textTheme.titleSmall), - const TextSpan(text: "."), ], )), ), diff --git a/test/components/chat_history/twitch/host_event_test.dart b/test/components/chat_history/twitch/host_event_test.dart index 79260b73c..6bdbe21a5 100644 --- a/test/components/chat_history/twitch/host_event_test.dart +++ b/test/components/chat_history/twitch/host_event_test.dart @@ -24,7 +24,7 @@ void main() { final findText = find.byWidgetPredicate((Widget widget) => widget is RichText && - widget.text.toPlainText() == "automux is hosting with a party of 10."); + widget.text.toPlainText() == "automux is hosting with a party of 10"); expect(findText, findsOneWidget); });