Skip to content

Commit

Permalink
fix: add trailing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
stamenione committed Jun 25, 2024
1 parent 34a9e28 commit 2732e04
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions AdminUi/apps/admin_ui/lib/home/tier_detail/tier_detail.dart
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,9 @@ class _TierDetailState extends State<TierDetail> {
TextSpan(
children: [
TextSpan(
text: '${context.l10n.id}: ',
style: Theme.of(context).textTheme.bodyLarge!.copyWith(fontWeight: FontWeight.bold)),
text: '${context.l10n.id}: ',
style: Theme.of(context).textTheme.bodyLarge!.copyWith(fontWeight: FontWeight.bold),
),
TextSpan(text: tierDetails.id, style: Theme.of(context).textTheme.bodyLarge),
],
),
Expand Down

0 comments on commit 2732e04

Please sign in to comment.