Skip to content

Commit

Permalink
fix: sub event wording (#1245)
Browse files Browse the repository at this point in the history
  • Loading branch information
SputNikPlop authored May 13, 2024
1 parent 5bb09db commit 60277f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/components/chat_history/twitch/subscription_event.dart
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class TwitchSubscriptionEventWidget extends StatelessWidget {
TextSpan(
text: model.subscriberUserName,
style: Theme.of(context).textTheme.titleSmall),
const TextSpan(text: " subscribed "),
const TextSpan(text: " subscribed at "),
TextSpan(
text: "Tier ${model.tier.replaceAll("000", "")}",
style: textTheme?.copyWith(color: tierColor(context, model.tier)),
Expand Down Expand Up @@ -142,7 +142,7 @@ class TwitchSubscriptionMessageEventWidget extends StatelessWidget {
TextSpan(
text: model.subscriberUserName,
style: Theme.of(context).textTheme.titleSmall),
const TextSpan(text: " subscribed "),
const TextSpan(text: " subscribed at "),
TextSpan(
text: "Tier ${model.tier.replaceAll("000", "")}",
style:
Expand Down

0 comments on commit 60277f9

Please sign in to comment.