Skip to content

Commit

Permalink
fixed fatal bug in updated notifier
Browse files Browse the repository at this point in the history
  • Loading branch information
bmaroti9 committed May 25, 2024
1 parent 7969443 commit 44e26f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ui_helper.dart
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ class _FadingWidgetState extends State<FadingWidget> {
comfortatext('${split[0]},', 13, widget.data.settings,
color: widget.data.current.textcolor, weight: FontWeight.w500),

comfortatext(split[1], 13, widget.data.settings,
comfortatext(split.length > 1 ?split[1] : "", 13, widget.data.settings,
color: widget.data.current.primary, weight: FontWeight.w500),
],
),
Expand Down

0 comments on commit 44e26f9

Please sign in to comment.