Skip to content

Commit

Permalink
chore: remove periods
Browse files Browse the repository at this point in the history
  • Loading branch information
kevmo314 committed May 12, 2024
1 parent 1da0b6b commit fb73599
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion lib/components/chat_history/twitch/host_event.dart
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ class TwitchHostEventWidget extends StatelessWidget {
TextSpan(
text: _formatter.format(model.viewers),
style: Theme.of(context).textTheme.titleSmall),
const TextSpan(text: "."),
],
)),
);
Expand Down
1 change: 0 additions & 1 deletion lib/components/chat_history/twitch/raid_event.dart
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ class TwitchRaidEventWidget extends StatelessWidget {
TextSpan(
text: _formatter.format(model.viewers),
style: Theme.of(context).textTheme.titleSmall),
const TextSpan(text: "."),
],
)),
),
Expand Down
2 changes: 1 addition & 1 deletion test/components/chat_history/twitch/host_event_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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);
});
Expand Down

0 comments on commit fb73599

Please sign in to comment.